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 25c8295cb2a388d2749cdb6a8aba524f5ed0ea6f..4962ec2c78cd8912d454ea34c315a9d10e60a209 100644 |
--- a/test/mjsunit/harmony/regress/regress-405844.js |
+++ b/test/mjsunit/harmony/regress/regress-405844.js |
@@ -4,13 +4,10 @@ |
// |
// Flags: --harmony-proxies --harmony-object-observe |
-// TODO(neis): These tests are temporarily commented out because of ongoing |
-// changes to the implementation of proxies. |
+var proxy = new Proxy({}, { fix: function() { return {}; } }); |
+Object.preventExtensions(proxy); |
+Object.observe(proxy, 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(){}); |
+var functionProxy = Proxy.createFunction({ fix: function() { return {}; } }, function(){}); |
+Object.preventExtensions(functionProxy); |
+Object.observe(functionProxy, function(){}); |