Skip to content

Commit

Permalink
Merge pull request #3210 from tc39/rwaldron/shadowrealm-fixups
Browse files Browse the repository at this point in the history
ShadowRealm: improved existing and additional coverage
  • Loading branch information
leobalter authored Sep 22, 2021
2 parents 49819bc + 43f4453 commit 94500e1
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ description: >
features: [ShadowRealm]
---*/

assert.sameValue(
typeof ShadowRealm.prototype.evaluate,
'function',
'This test must fail if ShadowRealm.prototype.evaluate is not a function'
);

globalThis.myValue = 'a';
const realm1 = new ShadowRealm();

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// Copyright (C) 2021 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-shadowrealm.prototype.evaluate
description: >
ShadowRealm.prototype.evaluate wrapped proxy callable object.
features: [ShadowRealm]
---*/

assert.sameValue(
typeof ShadowRealm.prototype.evaluate,
'function',
'This test must fail if ShadowRealm.prototype.evaluate is not a function'
);

const r = new ShadowRealm();

const proxyCallable = r.evaluate(`
function fn() { return 42; }
new Proxy(fn, {});
`);

assert.sameValue(typeof proxyCallable, 'function', 'wrapped proxy callable object is typeof function');
assert.sameValue(proxyCallable(), 42, 'wrappedpfn() returns 42');
assert.sameValue(proxyCallable instanceof Proxy, false, 'the wrapped function "hides" the proxy instance');
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ description: >
ShadowRealm can wrap a function to multiple nested realms.
features: [ShadowRealm]
---*/
assert.sameValue(
typeof ShadowRealm.prototype.evaluate,
'function',
'This test must fail if ShadowRealm.prototype.evaluate is not a function'
);

globalThis.count = 0;
const realm1 = new ShadowRealm();
Expand Down

0 comments on commit 94500e1

Please sign in to comment.