Lines Matching defs:context
23 TNode<Context> context, TNode<Object> iterable);
29 TNode<Context> context, TNode<Object> iterable) {
37 IteratorRecord iterator_record = GetIterator(context, iterable);
51 TNode<JSReceiver> next = IteratorStep(context, iterator_record, &done);
54 TNode<Object> next_value = IteratorValue(context, next);
72 CallRuntime(Runtime::kThrowTypeError, context,
80 IteratorCloseOnException(context, iterator_record);
81 CallRuntime(Runtime::kReThrow, context, var_exception.value());
91 auto context = Parameter<Context>(Descriptor::kContext);
94 Return(TemporalInstantFixedArrayFromIterable(context, iterable));