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