Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: test/mjsunit/harmony/proxies-revocable.js

Issue 1496243003: [proxies] Implement Proxy.revocable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/runtime/runtime-proxy.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Flags: --harmony-proxies --harmony-reflect
6
7
8 traps = [
9 "getPrototypeOf", "setPrototypeOf", "isExtensible", "preventExtensions",
10 "getOwnPropertyDescriptor", "has", "get", "set", "deleteProperty",
11 "defineProperty", "ownKeys", "apply", "construct"
12 ];
13 // TODO(neis): Fix enumerate.
14
15 var {proxy, revoke} = Proxy.revocable({}, {});
16 assertEquals(0, revoke.length);
17
18 assertEquals(undefined, revoke());
19 for (var trap of traps) {
20 assertThrows(() => Reflect[trap](proxy), TypeError);
21 }
22
23 assertEquals(undefined, revoke());
24 for (var trap of traps) {
25 assertThrows(() => Reflect[trap](proxy), TypeError);
26 }
OLDNEW
« no previous file with comments | « src/runtime/runtime-proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698