Exemplo n.º 1
0
 public DoWhileStatementInfo Parse()
 {
     var rslt = new DoWhileStatementInfo(this);
     rslt.Condition = this.Condition.Parse();
     rslt.Statements = this.State.Parse(null);
     return rslt;
 }
Exemplo n.º 2
0
 public DoWhileStatementInfo Parse()
 {
     var rslt = new DoWhileStatementInfo(this);
     rslt.Condition = this.Condition.Parse();
     rslt.Statements = this.State.Parse(null);
     return rslt;
 }