(source: string, offset: number, file: string, line: number, message: string)
| 84 | } |
| 85 | |
| 86 | const fail = (source: string, offset: number, file: string, line: number, message: string): never => { |
| 87 | throw new Error(`${location(source, offset, file, line)} ${message}`) |
| 88 | } |
| 89 | |
| 90 | const isUnbracedControlFlow = (parent: Node | undefined): boolean => |
| 91 | parent !== undefined && new Set([ |
no test coverage detected