()
| 14178 | } |
| 14179 | var CompileError = class extends Error { |
| 14180 | toString() { |
| 14181 | return `${this.message} (${this.start.line}:${this.start.column}) |
| 14182 | ${this.frame}`; |
| 14183 | } |
| 14184 | }; |
| 14185 | function error(message, props) { |
| 14186 | const error2 = new CompileError(message); |
no test coverage detected