]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/ecma_2/Exceptions/statement-006.js
2 File Name: statement-006.js
3 Corresponds To: 12.6.3-9-n.js
4 ECMA Section: 12.6.3 The for...in Statement
7 Author: christine@netscape.com
8 Date: 11 september 1997
10 var SECTION
= "statement-006";
11 var VERSION
= "JS1_4";
12 var TITLE
= "The for..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";
25 var o
= new MyObject();
32 exception
= e
.toString();
35 testcases
[tc
++] = new TestCase(
37 "object is not defined" +
38 " (threw " + exception
+")",