(message: string, ...args: any[])
| 3 | */ |
| 4 | export class CompileError extends Error { |
| 5 | constructor(message: string, ...args: any[]) { |
| 6 | super(message, ...args); |
| 7 | this.name = 'CompileError'; |
| 8 | } |
| 9 | } |
| 10 | |
| 11 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected