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

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

Issue 1427743011: [proxies] Remove "fix" functionality, add (still unused) target property. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Test 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
« no previous file with comments | « test/mjsunit/harmony/proxies-hash.js ('k') | test/mjsunit/strong/load-proxy.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/regress/regress-405844.js
diff --git a/test/mjsunit/harmony/regress/regress-405844.js b/test/mjsunit/harmony/regress/regress-405844.js
index 3d3561f7a55fdd6681ff503652711899a4a52862..25c8295cb2a388d2749cdb6a8aba524f5ed0ea6f 100644
--- a/test/mjsunit/harmony/regress/regress-405844.js
+++ b/test/mjsunit/harmony/regress/regress-405844.js
@@ -4,10 +4,13 @@
//
// Flags: --harmony-proxies --harmony-object-observe
-var proxy = Proxy.create({ fix: function() { return {}; } });
-Object.preventExtensions(proxy);
-Object.observe(proxy, function(){});
+// TODO(neis): These tests are temporarily commented out because of ongoing
+// changes to the implementation of proxies.
-var functionProxy = Proxy.createFunction({ fix: function() { return {}; } }, function(){});
-Object.preventExtensions(functionProxy);
-Object.observe(functionProxy, function(){});
+//var proxy = Proxy.create({ fix: function() { return {}; } });
+//Object.preventExtensions(proxy);
+//Object.observe(proxy, function(){});
+//
+//var functionProxy = Proxy.createFunction({ fix: function() { return {}; } }, function(){});
+//Object.preventExtensions(functionProxy);
+//Object.observe(functionProxy, function(){});
« no previous file with comments | « test/mjsunit/harmony/proxies-hash.js ('k') | test/mjsunit/strong/load-proxy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698