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

Unified Diff: test/mjsunit/strong/declaration-after-use.js

Issue 961823002: Fix issue with class name TDZ in computed property names (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comment out strong test Created 5 years, 10 months 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/computed-property-names-classes.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/strong/declaration-after-use.js
diff --git a/test/mjsunit/strong/declaration-after-use.js b/test/mjsunit/strong/declaration-after-use.js
index 0087357000ad37fbd2cdd2792e6c99be62e28ce9..0559cdeffbaad73b3846cb1da583f563bb496558 100644
--- a/test/mjsunit/strong/declaration-after-use.js
+++ b/test/mjsunit/strong/declaration-after-use.js
@@ -180,9 +180,10 @@ function assertThrowsHelper(code, error) {
eval("var7;");
})();
- class C1 { constructor() { C1; } }; new C1();
- let C2 = class C3 { constructor() { C3; } }; new C2();
+ // https://code.google.com/p/v8/issues/detail?id=3927
+ // class C1 { constructor() { C1; } }; new C1();
+ // let C2 = class C3 { constructor() { C3; } }; new C2();
- class C4 { method() { C4; method; } }; new C4();
- let C5 = class C6 { method() { C6; method; } }; new C5();
+ // class C4 { method() { C4; method; } }; new C4();
+ // let C5 = class C6 { method() { C6; method; } }; new C5();
})();
« no previous file with comments | « test/mjsunit/harmony/computed-property-names-classes.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698