(promise)
| 345 | } |
| 346 | |
| 347 | function promiseBeforeHook(promise) { |
| 348 | trackPromise(promise); |
| 349 | const asyncId = promise[async_id_symbol]; |
| 350 | const triggerId = promise[trigger_async_id_symbol]; |
| 351 | emitBeforeScript(asyncId, triggerId, promise, true); |
| 352 | } |
| 353 | |
| 354 | function promiseAfterHook(promise) { |
| 355 | trackPromise(promise); |
nothing calls this directly
no test coverage detected
searching dependent graphs…