예제 #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);
 }