use of org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.AndOp in project scout.rt by eclipse.
the class SqlParser method parseAndExpr.
private AndExpr parseAndExpr(List<IToken> list, ParseContext ctx) {
// MathExpr (BinaryOp['AND'] MathExpr)*
ParseStep lock = ctx.checkAndAdd("AndExpr", list);
if (lock == null) {
return null;
}
try {
IToken me = parseMathExpr(list, ctx);
if (me == null) {
return null;
}
AndExpr ae = new AndExpr();
ae.addChild(me);
AndOp ao;
while ((ao = removeToken(list, AndOp.class)) != null && (me = parseMathExpr(list, ctx)) != null) {
ae.addChild(ao);
ae.addChild(me);
}
// remaining?
if (ao != null) {
ao.addComment(new Comment("/*syntax warning*/"));
ae.addChild(ao);
}
return ae;
} finally {
ctx.remove(lock);
}
}
Aggregations