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

Unified Diff: test/mjsunit/es6/iteration-semantics.js

Issue 1417063011: [runtime] support new Proxy() instead of Proxy.create and install getPrototypeOf trap (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: adding proxy trap strings Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: test/mjsunit/es6/iteration-semantics.js
diff --git a/test/mjsunit/es6/iteration-semantics.js b/test/mjsunit/es6/iteration-semantics.js
index f29e6e011b5a71deaf00b148dbcd5a53c3f5e426..43075a4033f9dc2d9f7691437328a39b52d6dcd8 100644
--- a/test/mjsunit/es6/iteration-semantics.js
+++ b/test/mjsunit/es6/iteration-semantics.js
@@ -309,7 +309,7 @@ assertEquals(5,
// Proxy results, with getters.
function transparent_proxy(x) {
- return Proxy.create({
+ return new Proxy({}, {
get: function(receiver, name) { return x[name]; }
});
}
@@ -324,7 +324,7 @@ assertEquals([1, 2],
// Proxy iterators.
function poison_proxy_after(iterable, n) {
var iterator = iterable[Symbol.iterator]();
- return wrap_iterator(Proxy.create({
+ return wrap_iterator(new Proxy({}, {
get: function(receiver, name) {
if (name == 'next' && n-- < 0) throw "unreachable";
return iterator[name];

Powered by Google App Engine
This is Rietveld 408576698