Atom: ( expr ) | condition */
| 1225 | |
| 1226 | /* Atom: ( expr ) | condition */ |
| 1227 | static cbm_expr_t *parse_atom_expr(parser_t *p) { // NOLINT(misc-no-recursion) |
| 1228 | if (match(p, TOK_LPAREN)) { |
| 1229 | if (!parse_depth_enter(p)) { |
| 1230 | return NULL; |
| 1231 | } |
| 1232 | cbm_expr_t *e = parse_or_expr(p); |
| 1233 | parse_depth_leave(p); |
| 1234 | expect(p, TOK_RPAREN); |
| 1235 | return e; |
| 1236 | } |
| 1237 | return parse_condition_expr(p); |
| 1238 | } |
| 1239 | |
| 1240 | /* NOT: NOT atom | atom */ |
| 1241 | static cbm_expr_t *parse_not_expr(parser_t *p) { // NOLINT(misc-no-recursion) |
no test coverage detected