use of org.beetl.core.statement.NotBooleanExpression in project beetl2.0 by javamonkey.
the class AntlrProgramBuilder method parseNotExpression.
protected NotBooleanExpression parseNotExpression(NotExpContext ctx) {
Expression exp = this.parseExpress(ctx.expression());
NotBooleanExpression notExp = new NotBooleanExpression(exp, this.getBTToken(ctx.NOT().getSymbol()));
return notExp;
}
Aggregations