Source code

Revision control

Copy as Markdown

Other Tools

// Any copyright is dedicated to the Public Domain.
//-----------------------------------------------------------------------------
var BUGNUMBER = 604504;
var summary = "eval called from a native function is indirect";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var originalEval = eval;
var global = this;
var directCheckCode = "this === global";
function testArrayGeneric()
{
var global = "psych!";
var eval = Array.map;
var mapped = eval([directCheckCode], originalEval);
assertEq(mapped[0], true);
}
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("All tests passed!");