Ejemplo n.º 1
0
 private AssignmentStep(LocalVariableName localVariable, FunctionalExpression value, Step next)
     : base(next)
 {
     GlobalVariable = null;
     LocalVariable  = localVariable;
     Value          = value;
 }
Ejemplo n.º 2
0
 /// <inheritdoc />
 public LogicVariable(LocalVariableName name)
 {
     Name = name;
 }