]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/mozilla/ecma_2/Exceptions/lexical-004.js
2 File Name: lexical-004.js
3 Corresponds To: ecma/LexicalExpressions/7.4.1-1-n.js
8 Reserved words cannot be used as identifiers.
16 Author: christine@netscape.com
17 Date: 12 november 1997
20 var SECTION
= "lexical-004";
21 var VERSION
= "JS1_4";
22 var TITLE
= "Keywords";
25 writeHeaderToLog( SECTION
+ " "+ TITLE
);
28 var testcases
= new Array();
30 var result
= "Failed";
31 var exception
= "No exception thrown";
32 var expect
= "Passed";
35 eval("var null = true;");
38 exception
= e
.toString();
41 testcases
[tc
++] = new TestCase(
44 " (threw " + exception
+")",