(text: string)
| 24 | import { TokenKind } from '../tokenKind.ts'; |
| 25 | |
| 26 | function expectSyntaxError(text: string) { |
| 27 | return expectToThrowJSON(() => parse(text)); |
| 28 | } |
| 29 | |
| 30 | describe('Parser', () => { |
| 31 | it('parse provides useful errors', () => { |
no test coverage detected