62155dbd3c
Bootstrap ShadowRealm.prototype.evaluate, WrappedFunction and WrappedFunction.[[Call]]. Bug: v8:11989 Change-Id: Id380acb71cd5719e783c8f5d741cc4ccf2a93e78 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3432729 Reviewed-by: Igor Sheludko <ishell@chromium.org> Reviewed-by: Tobias Tebbi <tebbi@chromium.org> Reviewed-by: Marja Hölttä <marja@chromium.org> Reviewed-by: Shu-yu Guo <syg@chromium.org> Commit-Queue: Chengzhong Wu <legendecas@gmail.com> Cr-Commit-Position: refs/heads/main@{#79293}
65 lines
1.9 KiB
JavaScript
65 lines
1.9 KiB
JavaScript
// Copyright 2022 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --harmony-shadow-realm
|
|
|
|
var shadowRealm = new ShadowRealm();
|
|
|
|
// re-throwing with SyntaxError
|
|
assertThrows(() => shadowRealm.evaluate('...'), SyntaxError, 'Unexpected end of input')
|
|
|
|
// builtin
|
|
var wrapped = shadowRealm.evaluate('String.prototype.substring');
|
|
assertEquals(wrapped.call('123', 1), '23');
|
|
|
|
// bound function
|
|
var wrapped = shadowRealm.evaluate('(function it() { return this.a }).bind({ a: 1 })');
|
|
assertEquals(wrapped(), 1);
|
|
|
|
// nested bound function
|
|
var wrapped = shadowRealm.evaluate('(function it() { return this.a }).bind({ a: 1 }).bind().bind()');
|
|
assertEquals(wrapped(), 1);
|
|
|
|
// function with function context
|
|
var wrapped = shadowRealm.evaluate(`
|
|
(function () {
|
|
var a = 1;
|
|
function it() { return a++; };
|
|
return it;
|
|
})()
|
|
`);
|
|
assertEquals(wrapped(), 1);
|
|
assertEquals(wrapped(), 2);
|
|
|
|
// callable proxy
|
|
var wrapped = shadowRealm.evaluate('new Proxy(() => 1, {})');
|
|
assertEquals(wrapped(), 1);
|
|
|
|
// nested callable proxy
|
|
var wrapped = shadowRealm.evaluate('new Proxy(new Proxy(new Proxy(() => 1, {}), {}), {})');
|
|
assertEquals(wrapped(), 1);
|
|
|
|
// revocable proxy
|
|
var wrapped = shadowRealm.evaluate(`
|
|
var revocable = Proxy.revocable(() => 1, {});
|
|
globalThis.revoke = () => {
|
|
revocable.revoke();
|
|
};
|
|
|
|
revocable.proxy;
|
|
`);
|
|
var revoke = shadowRealm.evaluate('globalThis.revoke');
|
|
assertEquals(wrapped(), 1);
|
|
revoke();
|
|
assertThrows(() => wrapped(), TypeError, "Cannot perform 'apply' on a proxy that has been revoked");
|
|
|
|
// revoked proxy
|
|
var wrapped = shadowRealm.evaluate(`
|
|
var revocable = Proxy.revocable(() => 1, {});
|
|
revocable.revoke();
|
|
revocable.proxy;
|
|
`);
|
|
var revoke = shadowRealm.evaluate('globalThis.revoke');
|
|
assertThrows(() => wrapped(), TypeError, "Cannot perform 'apply' on a proxy that has been revoked");
|