]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/ecma_2/Exceptions/lexical-047.js
2 File Name: lexical-047.js
3 Corresponds To: 7.8.1-7-n.js
6 Author: christine@netscape.com
7 Date: 15 september 1997
10 var SECTION
= "lexical-047";
11 var VERSION
= "JS1_4";
12 var TITLE
= "for loops";
15 writeHeaderToLog( SECTION
+ " "+ TITLE
);
18 var testcases
= new Array();
20 var result
= "Failed";
21 var exception
= "No exception thrown";
22 var expect
= "Passed";
26 eval("for ( counter = 0\n"
30 + "result += \": got to inner loop\";\n"
35 exception
= e
.toString();
38 testcases
[tc
++] = new TestCase(
40 "line breaks within a for expression" +
41 " (threw " + exception
+")",