Home | History | Annotate | Download | only in builtins

Lines Matching refs:iter_result

516   Node* const iter_result = Allocate(JSIteratorResult::kSize);
520 StoreMapNoWriteBarrier(iter_result, map);
521 StoreObjectFieldRoot(iter_result, JSIteratorResult::kPropertiesOrHashOffset,
523 StoreObjectFieldRoot(iter_result, JSIteratorResult::kElementsOffset,
525 StoreObjectFieldNoWriteBarrier(iter_result, JSIteratorResult::kValueOffset,
527 StoreObjectFieldNoWriteBarrier(iter_result, JSIteratorResult::kDoneOffset,
531 // We know that {iter_result} itself doesn't have any "then" property (a
533 // and we also know that the [[Prototype]] of {iter_result} is the intrinsic
547 // Skip the "then" on {iter_result} and directly fulfill the {promise}
548 // with the {iter_result}.
549 CallBuiltin(Builtins::kFulfillPromise, context, promise, iter_result);
556 CallBuiltin(Builtins::kResolvePromise, context, promise, iter_result);