js/src/tests/ecma_5/Global/eval-native-callback-is-indirect.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/ecma_5/Global/eval-native-callback-is-indirect.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,32 @@
     1.4 +// Any copyright is dedicated to the Public Domain.
     1.5 +// http://creativecommons.org/licenses/publicdomain/
     1.6 +
     1.7 +//-----------------------------------------------------------------------------
     1.8 +var BUGNUMBER = 604504;
     1.9 +var summary = "eval called from a native function is indirect";
    1.10 +
    1.11 +print(BUGNUMBER + ": " + summary);
    1.12 +
    1.13 +/**************
    1.14 + * BEGIN TEST *
    1.15 + **************/
    1.16 +
    1.17 +var originalEval = eval;
    1.18 +
    1.19 +var global = this;
    1.20 +var directCheckCode = "this === global";
    1.21 +
    1.22 +function testBound()
    1.23 +{
    1.24 +  var global = "psych!";
    1.25 +  var eval = originalEval.bind(undefined, directCheckCode);
    1.26 +  assertEq(eval(), true);
    1.27 +}
    1.28 +testBound();
    1.29 +
    1.30 +/******************************************************************************/
    1.31 +
    1.32 +if (typeof reportCompare === "function")
    1.33 +  reportCompare(true, true);
    1.34 +
    1.35 +print("All tests passed!");

mercurial