예제 #1
0
 public KwrJumpIfNotTrue(BooleanStatement condition, int jumpPos) : base(jumpPos, true)
 {
     Condition = condition;
 }
예제 #2
0
 public NotBooleanOperator(BooleanStatement stat)
 {
     Statement = stat;
 }
예제 #3
0
 public KwIf(BooleanStatement cond, List <Statement> stat, List <Statement> elseStat)
 {
     Condition = cond; Statements = stat; ElseStatements = elseStat;
 }
예제 #4
0
 public BoolBinaryOperator(BooleanStatement l, BooleanStatement r, string op) : base(l, r, op)
 {
 }