예제 #1
0
        private BooleanExpression ParseAndOperator()
        {
            BooleanExpression c = this.ParseSimpleExpression();

            while (this.token == TokenType.And)
            {
                this.MoveNext();
                c = new AndOperator(c, this.ParseSimpleExpression());
            }
            return(c);
        }
예제 #2
0
파일: Parser.cs 프로젝트: bnantz/NCS-V1-1
 private BooleanExpression ParseAndOperator()
 {
     BooleanExpression c = this.ParseSimpleExpression();
     while (this.token == TokenType.And)
     {
         this.MoveNext();
         c = new AndOperator(c, this.ParseSimpleExpression());
     }
     return c;
 }