Lines Matching refs:parent
304 function trackPromise(promise, parent) {
309 // Get trigger id from parent async id before making the async id of the
311 const triggerAsyncId = parent ? getOrSetAsyncId(parent) :
318 function promiseInitHook(promise, parent) {
319 trackPromise(promise, parent);
325 function promiseInitHookWithDestroyTracking(promise, parent) {
326 promiseInitHook(promise, parent);
327 destroyTracking(promise, parent);
330 function destroyTracking(promise, parent) {
331 trackPromise(promise, parent);