示例#1
0
文件: Visitor.cs 项目: zuzhu/pinac
 public abstract void VisitScalarArgument(ScalarArgument element);
示例#2
0
 internal CaseValueChainer(Chainer prev, ScalarArgument checkValue)
     : base(prev)
 {
     checkValue = checkValue ?? Designer.Null;
     TryTake(checkValue, TakeProperty.Database, TakeProperty.Build);
 }
示例#3
0
 public override void VisitScalarArgument(ScalarArgument element)
 {
     //throw new NotImplementedException();
 }
示例#4
0
 /// <summary>
 /// Sets the argument's type.
 /// </summary>
 /// <param name="arg">Is an argument.</param>
 protected internal void SetArgType(ScalarArgument arg)
 {
     ArgType = typeof(ScalarArgument);
     SetDebugValue(arg, DebugSetter.Arg);
 }