use of org.beetl.core.statement.AndExpression in project beetl2.0 by javamonkey.
the class AntlrProgramBuilder method parseAndExpression.
protected AndExpression parseAndExpression(AndExpContext ctx) {
Expression exp1 = this.parseExpress(ctx.expression(0));
Expression exp2 = this.parseExpress(ctx.expression(1));
AndExpression andExp = new AndExpression(exp1, exp2, this.getBTToken(ctx.AND().getSymbol()));
return andExp;
}
Aggregations