Searched refs:reject_handler (Results 1 – 8 of 8) sorted by relevance
25 ACCESSORS(PromiseReaction, reject_handler, HeapObject, kRejectHandlerOffset)
139 DECL_ACCESSORS(reject_handler, HeapObject)
90 Node* fulfill_handler, Node* reject_handler);
402 Node* reject_handler) { in AllocatePromiseReaction() argument412 reaction, PromiseReaction::kRejectHandlerOffset, reject_handler); in AllocatePromiseReaction()
1313 VerifyHeapPointer(isolate, reject_handler()); in PromiseReactionVerify()1314 CHECK(reject_handler()->IsUndefined(isolate) || in PromiseReactionVerify()1315 reject_handler()->IsCallable()); in PromiseReactionVerify()
2111 if (reaction->reject_handler()->IsUndefined(isolate)) { in Throw()2117 JSReceiver::cast(reaction->reject_handler()), isolate); in Throw()
1615 os << "\n - reject_handler: " << Brief(reject_handler()); in PromiseReactionPrint()
16432 HeapObject* handler = reaction->reject_handler(); in TriggerPromiseReactions()