Lines Matching defs:innerResult
84 VReg innerResult = pg_->AllocReg();
93 pg_->StoreConst(node_, innerResult, Constant::JS_UNDEFINED);
101 // 4. Let innerResult be GetMethod(iterator, "return").
104 // 5. If innerResult.[[Type]] is normal, then
106 // a. Let return be innerResult.[[Value]].
109 // c. Set innerResult to Call(return, iterator).
112 // d. If innerResult.[[Type]] is normal, set innerResult to Await(innerResult.[[Value]]).
115 pg_->StoreAccumulator(node_, innerResult);
130 // 7. If innerResult.[[Type]] is throw, return Completion(innerResult).
135 // 8. If Type(innerResult.[[Value]]) is not Object, throw a TypeError exception.
136 pg_->LoadAccumulator(node_, innerResult);
137 pg_->ThrowIfNotObject(node_, innerResult);