mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
27ff0f3d29
added to the javascript engine. not part of the build.
59 lines
1.3 KiB
JavaScript
59 lines
1.3 KiB
JavaScript
/**
|
|
File Name: lexical-027.js
|
|
Corresponds To: 7.4.2-4-n.js
|
|
ECMA Section: 7.4.2
|
|
|
|
Description:
|
|
The following tokens are ECMAScript keywords and may not be used as
|
|
identifiers in ECMAScript programs.
|
|
|
|
Syntax
|
|
|
|
var
|
|
|
|
Keyword :: one of
|
|
break for new var
|
|
continue function return void
|
|
delete if this while
|
|
else in typeof with
|
|
|
|
This test verifies that the keyword cannot be used as an identifier.
|
|
Functioinal tests of the keyword may be found in the section corresponding
|
|
to the function of the keyword.
|
|
|
|
Author: christine@netscape.com
|
|
Date: 12 november 1997
|
|
|
|
*/
|
|
var SECTION = "lexical-027";
|
|
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("var var;");
|
|
} catch ( e ) {
|
|
result = expect;
|
|
exception = e.toString();
|
|
}
|
|
|
|
testcases[tc++] = new TestCase(
|
|
SECTION,
|
|
"var var" +
|
|
" (threw " + exception +")",
|
|
expect,
|
|
result );
|
|
|
|
test();
|
|
|
|
|