]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/ecma_2/Exceptions/statement-008.js
2 File Name: statement-008.js
3 Corresponds To: 12.8-1-n.js
4 ECMA Section: 12.8 The break statement
7 Author: christine@netscape.com
10 var SECTION
= "statement-008";
11 var VERSION
= "JS1_4";
12 var TITLE
= "The break in statment";
15 writeHeaderToLog( SECTION
+ " "+ TITLE
);
18 var testcases
= new Array();
20 var result
= "Failed";
21 var exception
= "No exception thrown";
22 var expect
= "Passed";
28 exception
= e
.toString();
31 testcases
[tc
++] = new TestCase(
33 "break outside of an iteration statement" +
34 " (threw " + exception
+")",