gecko/js/tests/ecma_2/LexicalConventions/keywords-001.js
2007-05-04 11:49:29 -07:00

38 lines
657 B
JavaScript

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/**
* File Name:
* ECMA Section:
* Description:
*
*
* Author: christine@netscape.com
* Date: 11 August 1998
*/
var SECTION = "";
var VERSION = "ECMA_2";
var TITLE = "Keywords";
startTest();
print("This test requires option javascript.options.strict enabled");
options('strict');
options('werror');
var result = "failed";
try {
eval("super;");
}
catch (x) {
if (x instanceof SyntaxError)
result = x.name;
}
AddTestCase(
"using the expression \"super\" shouldn't cause js to crash",
"SyntaxError",
result );
test();