(type: string, init?: ErrorEventInit)
| 17 | public error: any; |
| 18 | |
| 19 | constructor(type: string, init?: ErrorEventInit) { |
| 20 | super(type, init); |
| 21 | this.message = init?.message || ""; |
| 22 | this.filename = init?.filename || ""; |
| 23 | this.lineno = init?.lineno || 0; |
| 24 | this.colno = init?.colno || 0; |
| 25 | this.error = init?.error || null; |
| 26 | } |
| 27 | }; |
| 28 | |
| 29 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected