(exit: Exit.Exit<A, E>)
| 844 | } |
| 845 | |
| 846 | setExitValue(exit: Exit.Exit<A, E>) { |
| 847 | this._exitValue = exit |
| 848 | this.reportExitValue(exit) |
| 849 | for (let i = this._observers.length - 1; i >= 0; i--) { |
| 850 | this._observers[i](exit) |
| 851 | } |
| 852 | this._observers = [] |
| 853 | } |
| 854 | |
| 855 | getLoggers() { |
| 856 | return this.getFiberRef(currentLoggers) |
no test coverage detected