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

Unified Diff: test/mjsunit/harmony/regress/regress-2225.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: 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-2225.js
diff --git a/test/mjsunit/harmony/regress/regress-2225.js b/test/mjsunit/harmony/regress/regress-2225.js
index 12d3eee116a0c4ddd0269cb08832374b58df912e..4a4ccb23db58ebd9b69e0b6e40d64382c22ed98b 100644
--- a/test/mjsunit/harmony/regress/regress-2225.js
+++ b/test/mjsunit/harmony/regress/regress-2225.js
@@ -28,7 +28,7 @@
// Flags: --harmony-proxies
var proxy_has_x = false;
-var proxy = new Proxy({}, { getPropertyDescriptor:function(key) {
+var proxy = new Proxy({}, { getOwnPropertyDescriptor:function(t, key) {
assertSame('x', key);
if (proxy_has_x) {
return { configurable:true, writable:false, value:19 };

Powered by Google App Engine
This is Rietveld 408576698