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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/preparser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after
1791 1791
1792 const char* statement_data[] = { 1792 const char* statement_data[] = {
1793 "mylabel: while(true) { break mylabel; }", 1793 "mylabel: while(true) { break mylabel; }",
1794 "eval: while(true) { break eval; }", 1794 "eval: while(true) { break eval; }",
1795 "arguments: while(true) { break arguments; }", 1795 "arguments: while(true) { break arguments; }",
1796 NULL 1796 NULL
1797 }; 1797 };
1798 1798
1799 RunParserSyncTest(context_data, statement_data, kSuccess); 1799 RunParserSyncTest(context_data, statement_data, kSuccess);
1800 } 1800 }
1801
1802
1803 TEST(ErrorsParenthesizedLabels) {
1804 // Parenthesized identifiers shouldn't be recognized as labels.
1805 const char* context_data[][2] = {
1806 { "", ""},
1807 { "function test_func() {", "}" },
1808 { NULL, NULL }
1809 };
1810
1811 const char* statement_data[] = {
1812 "(mylabel): while(true) { break mylabel; }",
1813 NULL
1814 };
1815
1816 RunParserSyncTest(context_data, statement_data, kError);
1817 }
1818
1819
1820 TEST(NoErrorsParenthesizedDirectivePrologue) {
1821 // Parenthesized directive prologue shouldn't be recognized.
1822 const char* context_data[][2] = {
1823 { "", ""},
1824 { NULL, NULL }
1825 };
1826
1827 const char* statement_data[] = {
1828 "(\"use strict\"); var eval;",
1829 NULL
1830 };
1831
1832 RunParserSyncTest(context_data, statement_data, kSuccess);
1833 }
OLDNEW
« 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