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

Unified Diff: test/mjsunit/harmony/regress/regress-2219.js

Issue 1516843002: [proxy] fixing harmony/proxy.js tests and improving error messages + some drive-by fixes (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: WIP fix protoype walks with access checks 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 side-by-side diff with in-line comments
Download patch
Index: test/mjsunit/harmony/regress/regress-2219.js
diff --git a/test/mjsunit/harmony/regress/regress-2219.js b/test/mjsunit/harmony/regress/regress-2219.js
index eb369db9a5f614cb12da84986742865ce6562445..29e08603b590d2e4fe6918f9936d0ffd0e9a9c5f 100644
--- a/test/mjsunit/harmony/regress/regress-2219.js
+++ b/test/mjsunit/harmony/regress/regress-2219.js
@@ -27,6 +27,6 @@
// Flags: --harmony-proxies --expose-gc
-var p = new Proxy({}, {getPropertyDescriptor: function() { gc() }});
+var p = new Proxy({}, {getOwnPropertyDescriptor: function() { gc() }});
var o = Object.create(p);
assertSame(23, o.x = 23);

Powered by Google App Engine
This is Rietveld 408576698