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

Unified Diff: test/mjsunit/harmony/proxies-hash.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-function.js ('k') | test/mjsunit/harmony/regress/regress-405844.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/proxies-hash.js
diff --git a/test/mjsunit/harmony/proxies-hash.js b/test/mjsunit/harmony/proxies-hash.js
index 65d2d3c5646cdbb2188a439407f30ee536795a87..b78edbf7cf10371a43898435831997a689049034 100644
--- a/test/mjsunit/harmony/proxies-hash.js
+++ b/test/mjsunit/harmony/proxies-hash.js
@@ -70,9 +70,10 @@ function TestSet2(construct, fix, create) {
assertFalse(s.has(p3));
}
-TestSet(Set, Object.seal)
-TestSet(Set, Object.freeze)
-TestSet(Set, Object.preventExtensions)
+// TODO(neis): Reenable once proxies properly support these operations.
+// TestSet(Set, Object.seal)
+// TestSet(Set, Object.freeze)
+// TestSet(Set, Object.preventExtensions)
// Maps and weak maps.
@@ -113,10 +114,12 @@ function TestMap2(construct, fix, create) {
assertSame(undefined, m.get(p2));
}
-TestMap(Map, Object.seal)
-TestMap(Map, Object.freeze)
-TestMap(Map, Object.preventExtensions)
+// TODO(neis): Reenable once proxies properly support these operations.
+// TestMap(Map, Object.seal)
+// TestMap(Map, Object.freeze)
+// TestMap(Map, Object.preventExtensions)
-TestMap(WeakMap, Object.seal)
-TestMap(WeakMap, Object.freeze)
-TestMap(WeakMap, Object.preventExtensions)
+// TODO(neis): Reenable once proxies properly support these operations.
+// TestMap(WeakMap, Object.seal)
+// TestMap(WeakMap, Object.freeze)
+// TestMap(WeakMap, Object.preventExtensions)
« no previous file with comments | « test/mjsunit/harmony/proxies-function.js ('k') | test/mjsunit/harmony/regress/regress-405844.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698