Parses the "ExprSingle" rule. @return query expression or null @throws QueryException query exception
()
| 1123 | * @throws QueryException query exception |
| 1124 | */ |
| 1125 | private Expr single() throws QueryException { |
| 1126 | alter = null; |
| 1127 | Expr expr = flwor(); |
| 1128 | if(expr == null) expr = quantified(); |
| 1129 | if(expr == null) expr = switchh(); |
| 1130 | if(expr == null) expr = typeswitch(); |
| 1131 | if(expr == null) expr = iff(); |
| 1132 | if(expr == null) expr = tryCatch(); |
| 1133 | if(expr == null) expr = insert(); |
| 1134 | if(expr == null) expr = delete(); |
| 1135 | if(expr == null) expr = rename(); |
| 1136 | if(expr == null) expr = replace(); |
| 1137 | if(expr == null) expr = updatingFunctionCall(); |
| 1138 | if(expr == null) expr = copyModify(); |
| 1139 | if(expr == null) expr = or(); |
| 1140 | return expr; |
| 1141 | } |
| 1142 | |
| 1143 | /** |
| 1144 | * Parses the "FLWORExpr" rule. |
no test coverage detected