Searched refs:reject_handler (Results 1 – 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
D | promise.tq | 29 reject_handler: Callable|Undefined;
|
D | objects.cc | 5614 secondary_handler = handle(reaction->reject_handler(), isolate); in TriggerPromiseReactions() 5616 primary_handler = handle(reaction->reject_handler(), isolate); in TriggerPromiseReactions()
|
/third_party/node/deps/v8/src/builtins/ |
D | promise-abstract-operations.tq | 101 secondaryHandler = promiseReaction.reject_handler; 104 primaryHandler = promiseReaction.reject_handler;
|
D | promise-misc.tq | 280 reject_handler: rejectHandler,
|
/third_party/node/deps/v8/src/runtime/ |
D | runtime-debug.cc | 826 Handle<JSFunction> reject_handler = args.at<JSFunction>(2); in RUNTIME_FUNCTION() local 842 Object::SetProperty(isolate, reject_handler, in RUNTIME_FUNCTION()
|
/third_party/node/deps/v8/src/execution/ |
D | isolate.cc | 1011 } else if (IsBuiltinFunction(isolate, reaction->reject_handler(), in CaptureAsyncStackTrace() 1013 Handle<JSFunction> function(JSFunction::cast(reaction->reject_handler()), in CaptureAsyncStackTrace() 2676 if (!reaction->reject_handler().IsUndefined(isolate)) { in ThrowInternal() 2677 Handle<JSReceiver> reject_handler( in ThrowInternal() local 2678 JSReceiver::cast(reaction->reject_handler()), isolate); in ThrowInternal() 2679 if (PromiseIsRejectHandler(isolate, reject_handler)) return true; in ThrowInternal()
|