public WhileStatementInfo Parse()
 {
     var rslt = new WhileStatementInfo(this);
     rslt.Condition = this.Condition.Parse();
     rslt.Statements = State.Parse(null);
     return rslt;
 }
Exemple #2
0
        public WhileStatementInfo Parse()
        {
            var rslt = new WhileStatementInfo(this);

            rslt.Condition  = this.Condition.Parse();
            rslt.Statements = State.Parse(null);
            return(rslt);
        }