Lines Matching defs:next
55 TNode<Object> next =
57 return IteratorRecord{TNode<JSReceiver>::UncheckedCast(iterator), next};
65 // 1. a. Let result be ? Invoke(iterator, "next", « »).
66 TNode<Object> result = Call(context, iterator.next, iterator.object);
164 // 3. Let next be true.
165 // 4. Repeat, while next is not false
168 // a. Set next to ? IteratorStep(iteratorRecord).
169 TNode<JSReceiver> next = IteratorStep(context, iterator_record, &done);
170 // b. If next is not false, then
171 // i. Let nextValue be ? IteratorValue(next).
172 TNode<Object> next_value = IteratorValue(context, next);
237 // 4. Let next be true.
238 // 5. Repeat, while next is not false
243 // a. Set next to ? IteratorStep(iteratorRecord).
244 TNode<JSReceiver> next = IteratorStep(context, iterator_record, &done);
245 // b. If next is not false, then
246 // i. Let nextValue be ? IteratorValue(next).
247 TNode<Object> next_value = IteratorValue(context, next);
329 // Always call the `next()` builtins when the debugger is