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);
 }
示例#2
0
 public virtual void ExplicitVisit(DeclareVariableElement node)
 {
 }