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