Exemplo n.º 1
0
 public CompoundStatement(IStatement st1, IStatement st2)
 {
     this.st1 = st1;
     this.st2 = st2;
 }
Exemplo n.º 2
0
 public IfStatement(IExpression exp, IStatement st1, IStatement st2)
 {
     this.exp = exp;
     this.st1 = st1;
     this.st2 = st2;
 }