Parses the "StepExpr" rule. @param error show error if nothing is found @return query expression or null @throws QueryException query exception
(final boolean error)
| 2290 | * @throws QueryException query exception |
| 2291 | */ |
| 2292 | private Expr step(final boolean error) throws QueryException { |
| 2293 | final Expr expr = postfix(); |
| 2294 | return expr != null ? expr : axisStep(error); |
| 2295 | } |
| 2296 | |
| 2297 | /** |
| 2298 | * Parses the "AxisStep" rule. |
no test coverage detected