Exemplo n.º 1
0
 public abstract void VisitScalarArgument(ScalarArgument element);
Exemplo n.º 2
0
 internal CaseValueChainer(Chainer prev, ScalarArgument checkValue)
     : base(prev)
 {
     checkValue = checkValue ?? Designer.Null;
     TryTake(checkValue, TakeProperty.Database, TakeProperty.Build);
 }
Exemplo n.º 3
0
 public override void VisitScalarArgument(ScalarArgument element)
 {
     //throw new NotImplementedException();
 }
Exemplo n.º 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);
 }