| 395 | } |
| 396 | |
| 397 | bool accept_r_list(TokenStream &in) |
| 398 | { |
| 399 | auto tok = in.peek(); |
| 400 | if (tok.type == TokenType::R_List) |
| 401 | { |
| 402 | in.take(); |
| 403 | return true; |
| 404 | } |
| 405 | return false; |
| 406 | } |
| 407 | |
| 408 | void expect_r_list(TokenStream &in, bool &valid) |
| 409 | { |
no test coverage detected