()
| 145 | } |
| 146 | |
| 147 | function runMicrotask() { |
| 148 | this.runInAsyncScope(() => { |
| 149 | const callback = this.callback; |
| 150 | try { |
| 151 | callback(); |
| 152 | } finally { |
| 153 | this.emitDestroy(); |
| 154 | } |
| 155 | }); |
| 156 | } |
| 157 | |
| 158 | const defaultMicrotaskResourceOpts = { requireManualDestroy: true }; |
| 159 |
nothing calls this directly
no test coverage detected
searching dependent graphs…