NOT: NOT atom | atom */
| 1110 | |
| 1111 | /* NOT: NOT atom | atom */ |
| 1112 | static cbm_expr_t *parse_not_expr(parser_t *p) { // NOLINT(misc-no-recursion) |
| 1113 | if (match(p, TOK_NOT)) { |
| 1114 | cbm_expr_t *child = parse_not_expr(p); |
| 1115 | return child ? expr_not(child) : NULL; |
| 1116 | } |
| 1117 | return parse_atom_expr(p); |
| 1118 | } |
| 1119 | |
| 1120 | /* AND: not (AND not)* */ |
| 1121 | static cbm_expr_t *parse_and_expr(parser_t *p) { // NOLINT(misc-no-recursion) |
no test coverage detected