Search in sources :

Example 1 with OrOp

use of org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.OrOp in project scout.rt by eclipse.

the class SqlParser method parseOrExpr.

private OrExpr parseOrExpr(List<IToken> list, ParseContext ctx) {
    // AndExpr (BinaryOp['OR'] AndExpr)*
    ParseStep lock = ctx.checkAndAdd("OrExpr", list);
    if (lock == null) {
        return null;
    }
    try {
        AndExpr ae = parseAndExpr(list, ctx);
        if (ae == null) {
            return null;
        }
        OrExpr oe = new OrExpr();
        oe.addChild(ae);
        OrOp oo;
        while ((oo = removeToken(list, OrOp.class)) != null && (ae = parseAndExpr(list, ctx)) != null) {
            oe.addChild(oo);
            oe.addChild(ae);
        }
        // remaining?
        if (oo != null) {
            oo.addComment(new Comment("/*syntax warning*/"));
            oe.addChild(oo);
        }
        return oe;
    } finally {
        ctx.remove(lock);
    }
}
Also used : AndExpr(org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.AndExpr) OrOp(org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.OrOp) Comment(org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.Comment) OrExpr(org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.OrExpr)

Aggregations

AndExpr (org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.AndExpr)1 Comment (org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.Comment)1 OrExpr (org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.OrExpr)1 OrOp (org.eclipse.scout.rt.server.jdbc.parsers.sql.SqlParserToken.OrOp)1