]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/ecma_2/Exceptions/lexical-003.js
2 File Name: lexical-003.js
3 Corresponds To: 7.3-13-n.js
4 ECMA Section: 7.3 Comments
7 Author: christine@netscape.com
11 var SECTION
= "lexical-003.js";
12 var VERSION
= "JS1_4";
13 var TITLE
= "Comments";
16 writeHeaderToLog( SECTION
+ " "+ TITLE
);
19 var testcases
= new Array();
22 var result
= "Failed";
23 var exception
= "No exception thrown";
24 var expect
= "Passed";
27 eval("/*\n/* nested comment */\n*/\n");
30 exception
= e
.toString();
33 testcases
[tc
++] = new TestCase(
35 "/*/*nested comment*/ */" +
36 " (threw " + exception
+")",