| 481 | } |
| 482 | |
| 483 | static bool match(parser_t *p, cbm_token_type_t type) { |
| 484 | if (check(p, type)) { |
| 485 | advance(p); |
| 486 | return true; |
| 487 | } |
| 488 | return false; |
| 489 | } |
| 490 | |
| 491 | static const cbm_token_t *expect(parser_t *p, cbm_token_type_t type) { |
| 492 | if (check(p, type)) { |
no test coverage detected