Atom: ( expr ) | condition */
| 1100 | |
| 1101 | /* Atom: ( expr ) | condition */ |
| 1102 | static cbm_expr_t *parse_atom_expr(parser_t *p) { // NOLINT(misc-no-recursion) |
| 1103 | if (match(p, TOK_LPAREN)) { |
| 1104 | cbm_expr_t *e = parse_or_expr(p); |
| 1105 | expect(p, TOK_RPAREN); |
| 1106 | return e; |
| 1107 | } |
| 1108 | return parse_condition_expr(p); |
| 1109 | } |
| 1110 | |
| 1111 | /* NOT: NOT atom | atom */ |
| 1112 | static cbm_expr_t *parse_not_expr(parser_t *p) { // NOLINT(misc-no-recursion) |
no test coverage detected