mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
27ff0f3d29
added to the javascript engine. not part of the build.
49 lines
954 B
JavaScript
49 lines
954 B
JavaScript
/**
|
|
File Name: lexical-005.js
|
|
Corresponds To: 7.4.1-3-n.js
|
|
ECMA Section: 7.4.1
|
|
|
|
Description:
|
|
|
|
Reserved words cannot be used as identifiers.
|
|
|
|
ReservedWord ::
|
|
Keyword
|
|
FutureReservedWord
|
|
NullLiteral
|
|
BooleanLiteral
|
|
|
|
Author: christine@netscape.com
|
|
Date: 12 november 1997
|
|
*/
|
|
var SECTION = "lexical-005";
|
|
var VERSION = "JS1_4";
|
|
var TITLE = "Keywords";
|
|
|
|
startTest();
|
|
writeHeaderToLog( SECTION + " "+ TITLE);
|
|
|
|
var tc = 0;
|
|
var testcases = new Array();
|
|
|
|
var result = "Failed";
|
|
var exception = "No exception thrown";
|
|
var expect = "Passed";
|
|
|
|
try {
|
|
eval("false = true;");
|
|
} catch ( e ) {
|
|
result = expect;
|
|
exception = e.toString();
|
|
}
|
|
|
|
testcases[tc++] = new TestCase(
|
|
SECTION,
|
|
"false = true" +
|
|
" (threw " + exception +")",
|
|
expect,
|
|
result );
|
|
|
|
test();
|
|
|