From 37e2c664208aabb9d74dc63244d9bfa6c7fb5f93 Mon Sep 17 00:00:00 2001 From: legendecas Date: Fri, 29 Oct 2021 14:27:11 +0800 Subject: [PATCH] Fix ShadowRealm.prototype.evaluate wraps value in the builtin function realm --- .../evaluate/wrapped-function-proto-from-caller-realm.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/built-ins/ShadowRealm/prototype/evaluate/wrapped-function-proto-from-caller-realm.js b/test/built-ins/ShadowRealm/prototype/evaluate/wrapped-function-proto-from-caller-realm.js index 111e947b77..fe0ac03c16 100644 --- a/test/built-ins/ShadowRealm/prototype/evaluate/wrapped-function-proto-from-caller-realm.js +++ b/test/built-ins/ShadowRealm/prototype/evaluate/wrapped-function-proto-from-caller-realm.js @@ -33,6 +33,7 @@ assert.sameValue( var other = $262.createRealm().global; var OtherShadowRealm = other.ShadowRealm; +var OtherFunctionPrototype = other.Function.prototype; var realm = Reflect.construct(OtherShadowRealm, []); @@ -40,5 +41,5 @@ var checkArgWrapperFn = realm.evaluate('(x) => { return Object.getPrototypeOf(x) assert.sameValue(checkArgWrapperFn(() => {}), true, 'callable arguments passed into WrappedFunction should be wrapped in target realm'); var fn = realm.evaluate('() => { return () => { return 1 } }'); -assert.sameValue(Object.getPrototypeOf(fn), Function.prototype, 'WrappedFunction should be derived from the caller realm'); -assert.sameValue(Object.getPrototypeOf(fn()), Function.prototype, 'callable results from WrappedFunction should be wrapped in caller realm'); +assert.sameValue(Object.getPrototypeOf(fn), OtherFunctionPrototype, 'WrappedFunction should be derived from the caller realm'); +assert.sameValue(Object.getPrototypeOf(fn()), OtherFunctionPrototype, 'callable results from WrappedFunction should be wrapped in caller realm');