rhino1.7.7.testsrc.tests.js1_5.Error.regress-465377.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
var gTestfile = 'regress-465377.js';
//-----------------------------------------------------------------------------
var BUGNUMBER = 465377;
var summary = 'instanceof relations between Error objects';
var actual = '';
var expect = '';
//-----------------------------------------------------------------------------
test();
//-----------------------------------------------------------------------------
function test()
{
enterFunc ('test');
printBugNumber(BUGNUMBER);
printStatus (summary);
expect = actual = 'No Exception';
try
{
var list = [
"Error",
"InternalError",
"EvalError",
"RangeError",
"ReferenceError",
"SyntaxError",
"TypeError",
"URIError"
];
var instances = [];
for (var i = 0; i != list.length; ++i) {
var name = list[i];
var constructor = this[name];
var tmp = constructor.name;
if (tmp !== name)
throw "Bad value for "+name+".name: "+uneval(tmp);
instances[i] = new constructor();
}
for (var i = 0; i != instances.length; ++i) {
var instance = instances[i];
var name = instance.name;
var constructor = instance.constructor;
if (constructor !== this[name])
throw "Bad value of (new "+name+").constructor: "+uneval(tmp);
var tmp = constructor.name;
if (tmp !== name)
throw "Bad value for constructor.name: "+uneval(tmp);
if (!(instance instanceof Object))
throw "Bad instanceof Object for "+name;
if (!(instance instanceof Error))
throw "Bad instanceof Error for "+name;
if (!(instance instanceof constructor))
throw "Bad instanceof constructor for "+name;
if (instance instanceof Function)
throw "Bad instanceof Function for "+name;
for (var j = 1; j != instances.length; ++j) {
if (i != j && instance instanceof instances[j].constructor) {
throw "Unexpected (new "+name+") instanceof "+ instances[j].name;
}
}
}
print("OK");
}
catch(ex)
{
actual = ex + '';
}
reportCompare(expect, actual, summary);
exitFunc ('test');
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy