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

Unified Diff: test/cctest/test-parsing.cc

Issue 156673002: Revert "Unify paren handling in Parser and PreParser." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | « src/preparser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-parsing.cc
diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc
index 9768e30a55a6eac19f666e03f98a8a4c65f77d8d..0106e5944f2a4db8ce44b7cc6a27f8997ceb8a9a 100644
--- a/test/cctest/test-parsing.cc
+++ b/test/cctest/test-parsing.cc
@@ -1798,36 +1798,3 @@ TEST(NoErrorsIllegalWordsAsLabels) {
RunParserSyncTest(context_data, statement_data, kSuccess);
}
-
-
-TEST(ErrorsParenthesizedLabels) {
- // Parenthesized identifiers shouldn't be recognized as labels.
- const char* context_data[][2] = {
- { "", ""},
- { "function test_func() {", "}" },
- { NULL, NULL }
- };
-
- const char* statement_data[] = {
- "(mylabel): while(true) { break mylabel; }",
- NULL
- };
-
- RunParserSyncTest(context_data, statement_data, kError);
-}
-
-
-TEST(NoErrorsParenthesizedDirectivePrologue) {
- // Parenthesized directive prologue shouldn't be recognized.
- const char* context_data[][2] = {
- { "", ""},
- { NULL, NULL }
- };
-
- const char* statement_data[] = {
- "(\"use strict\"); var eval;",
- NULL
- };
-
- RunParserSyncTest(context_data, statement_data, kSuccess);
-}
« no previous file with comments | « src/preparser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698