Lines Matching defs:wrapped
1277 Handle<Context> wrapped) {
1293 if (!wrapped.is_null()) {
1294 context.set(Context::WRAPPED_CONTEXT_INDEX, *wrapped, SKIP_WRITE_BARRIER);
2731 // 2. Let wrapped be ! MakeBasicObject(internalSlotsList).
2732 // 3. Set wrapped.[[Prototype]] to
2734 // 4. Set wrapped.[[Call]] as described in 2.1.
2735 Handle<JSWrappedFunction> wrapped = Handle<JSWrappedFunction>::cast(
2737 // 5. Set wrapped.[[WrappedTargetFunction]] to Target.
2738 wrapped->set_wrapped_target_function(JSReceiver::cast(*target));
2739 // 6. Set wrapped.[[Realm]] to callerRealm.
2740 wrapped->set_context(*creation_context);
2743 return wrapped;