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