public DeclareVariableElement(ScriptDom.DeclareVariableElement src) : base(src) { this.VariableName = Copier.Copy <Identifier>(src.VariableName); this.DataType = Copier.Copy <DataTypeReference>(src.DataType); this.Nullable = Copier.Copy <NullableConstraintDefinition>(src.Nullable); this.Value = Copier.Copy <ScalarExpression>(src.Value); }
public virtual void ExplicitVisit(DeclareVariableElement node) { }