Exemplo n.º 1
0
 public WhileString(ExpressionStr arg1, ExpressionStr arg2, string conditionOperator, Dictionary <string, string> variablesString, Command body)
 {
     argument1 = arg1;
     argument1.trim();
     argument2 = arg2;
     argument2.trim();
     this.conditionOperator = conditionOperator;
     this.body = body;
 }
Exemplo n.º 2
0
 public ConditionString(ExpressionStr test1, ExpressionStr test2, string conditionOperator, Command isTrue, Command isFalse)
 {
     this.test1 = test1;
     test1.trim();
     this.test2 = test2;
     test2.trim();
     this.conditionOperator = conditionOperator;
     this.isTrue            = isTrue;
     this.isFalse           = isFalse;
 }