| 376 | } |
| 377 | |
| 378 | static bool TryRecoverBefore( |
| 379 | Parser* parser, |
| 380 | CoreLib::Text::TokenType before0) |
| 381 | { |
| 382 | CoreLib::Text::TokenType recoverBefore[] = { before0 }; |
| 383 | return TryRecover(parser, recoverBefore, 1, nullptr, 0); |
| 384 | } |
| 385 | |
| 386 | // Default recovery strategy, to use inside `{}`-delimeted blocks. |
| 387 | static bool TryRecover( |
no test coverage detected