Files
Mozilla/mozilla/js/tests/ecma_2/LexicalConventions/keywords-001.js
norris%netscape.com ee5e7e9f37 Shouldn't test for equality against the message string, which is implementation independent.
git-svn-id: svn://10.0.0.236/trunk@51537 18797224-902f-48f8-a5cc-f745e15eee43
1999-10-22 18:33:46 +00:00

32 lines
519 B
JavaScript

/**
* File Name:
* ECMA Section:
* Description:
*
*
* Author: christine@netscape.com
* Date: 11 August 1998
*/
var SECTION = "";
var VERSION = "ECMA_2";
var TITLE = "Keywords";
startTest();
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();