Lines Matching defs:context

51   Handle<NativeContext> context = isolate->native_context();
53 Factory::JSFunctionBuilder{isolate, shared_info, context}.Build();
69 Handle<NativeContext> context = isolate->native_context();
70 CHECK_EQ(function->native_context(), *context);
75 // TODO(cbruni, 1244145): Use host-defined options from script context.
80 isolate, function, Handle<JSObject>(context->global_proxy(), isolate),
106 Handle<Context> context = isolate->factory()->NewWithContext(
108 return Evaluate(isolate, outer_info, context, context_extension, source,
117 // materialized and included on top of the native context. Changes to
119 // Note that the native context is taken from the original context chain,
120 // which may not be the current native context of the isolate.
124 Handle<Context> context = context_builder.evaluation_context();
125 Handle<JSObject> receiver(context->global_proxy(), isolate);
127 Evaluate(isolate, context_builder.outer_info(), context, receiver, source,
140 // Get context and receiver.
142 Context::cast(it.frame()->context()).native_context(), isolate);
178 // Compile and evaluate source for the given context.
181 Handle<Context> context, Handle<Object> receiver, Handle<String> source,
187 source, outer_info, context, LanguageMode::kSloppy,
213 Handle<Context> outer_context(frame_inspector_.GetFunction()->context(),
221 // we reconstruct the context chain as follows:
223 // use a debug-evaluate context to wrap both the materialized object and
224 // the original context.
225 // - We also wrap all contexts on the chain between the original context
226 // and the function context.
227 // - Between the function scope and the native context, we only resolve
229 // variables. Contexts between the function context and the original
230 // context have a blocklist attached to implement that.
234 // - Look up in the original context.