Lines Matching defs:wrapped
30 TNode<JSObject> wrapped = AllocateJSObjectFromMap(map);
32 wrapped, JSWrappedFunction::kWrappedTargetFunctionOffset, target);
33 StoreObjectFieldNoWriteBarrier(wrapped, JSWrappedFunction::kContextOffset,
35 return wrapped;
78 // The intermediate wrapped functions are not user-visible. And calling a
79 // wrapped function won't cause a side effect in the creation realm.
128 // 2. Let wrapped be ! MakeBasicObject(internalSlotsList).
129 // 3. Set wrapped.[[Prototype]] to
131 // 4. Set wrapped.[[Call]] as described in 2.1.
132 // 5. Set wrapped.[[WrappedTargetFunction]] to Target.
133 // 6. Set wrapped.[[Realm]] to callerRealm.
134 // 7. Let result be CopyNameAndLength(wrapped, Target, "wrapped").
137 TNode<JSObject> wrapped =
140 // 9. Return wrapped.
141 Return(wrapped);
153 // https://tc39.es/proposal-shadowrealm/#sec-wrapped-function-exotic-objects-call-thisargument-argumentslist
192 // Create wrapped value in the target realm.
202 // Create wrapped value in the target realm.
243 // A wrapped value should not be non-callable.