OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |