public IfStatement(IBooleanReturningStatement condition, INullStatement thenDo)
 {
     this.condition = condition;
     this.thenDo    = thenDo;
 }
Example #2
0
 public Block AddChild(INullStatement assignment)
 {
     list.Add(assignment);
     return(this);
 }