Parses the if condition. @return query expression or null @throws QueryException query exception
()
| 1689 | * @throws QueryException query exception |
| 1690 | */ |
| 1691 | private Expr ifCond() throws QueryException { |
| 1692 | wsCheck("("); |
| 1693 | final Expr expr = check(expr(), NOIF); |
| 1694 | wsCheck(")"); |
| 1695 | return expr; |
| 1696 | } |
| 1697 | |
| 1698 | /** |
| 1699 | * Parses the "OrExpr" rule. |