use of org.beetl.core.statement.OrExpression in project beetl2.0 by javamonkey.
the class AntlrProgramBuilder method parseOrExpression.
protected OrExpression parseOrExpression(OrExpContext ctx) {
Expression exp1 = this.parseExpress(ctx.expression(0));
Expression exp2 = this.parseExpress(ctx.expression(1));
OrExpression orExp = new OrExpression(exp1, exp2, this.getBTToken(ctx.OR().getSymbol()));
return orExp;
}
Aggregations