()
| 497 | |
| 498 | _interrupted = false |
| 499 | unsafeInterrupt(): void { |
| 500 | if (this._exit) { |
| 501 | return |
| 502 | } |
| 503 | this._interrupted = true |
| 504 | if (this.interruptible) { |
| 505 | this.evaluate(exitInterrupt as any) |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | unsafePoll(): MicroExit<A, E> | undefined { |
| 510 | return this._exit |
no test coverage detected