(asyncId)
| 532 | |
| 533 | |
| 534 | function emitDestroyScript(asyncId) { |
| 535 | // Return early if there are no destroy callbacks, or invalid asyncId. |
| 536 | if (!hasHooks(kDestroy) || !(asyncId > 0)) |
| 537 | return; |
| 538 | async_wrap.queueDestroyAsyncId(asyncId); |
| 539 | } |
| 540 | |
| 541 | |
| 542 | function hasAsyncIdStack() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…