(error: Error)
| 561 | } |
| 562 | |
| 563 | onSendError(error: Error): Error | void { |
| 564 | if (this.options.onSendError) { |
| 565 | return this.options.onSendError(error); |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | private ensureResolvingExport(exportId: ExportId) { |
| 570 | let exp = this.exports[exportId]; |
nothing calls this directly
no test coverage detected