()
| 252 | } |
| 253 | |
| 254 | dispose() { |
| 255 | if (this.resolution) { |
| 256 | this.resolution.dispose(); |
| 257 | } else { |
| 258 | this.abort(new Error("RPC was canceled because the RpcPromise was disposed.")); |
| 259 | this.sendRelease(); |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | abort(error: any) { |
| 264 | if (!this.resolution) { |
nothing calls this directly
no test coverage detected