Ejemplo n.º 1
0
        private BooleanExpression ParseAndOperator()
        {
            BooleanExpression c = this.ParseSimpleExpression();

            while (this.token == TokenType.And)
            {
                this.MoveNext();
                c = new AndOperator(c, this.ParseSimpleExpression());
            }
            return(c);
        }
Ejemplo n.º 2
0
 private BooleanExpression ParseAndOperator()
 {
     BooleanExpression c = this.ParseSimpleExpression();
     while (this.token == TokenType.And)
     {
         this.MoveNext();
         c = new AndOperator(c, this.ParseSimpleExpression());
     }
     return c;
 }