diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2019-06-08 17:19:11 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2019-07-18 22:38:20 -0400 |
commit | cefee262b7059d035667b148d56ebc7af5120d37 (patch) | |
tree | bb2feca588ba2555b2559fdada273934335ae31b /js/src/jit-test/tests/basic/bug713226.js | |
parent | d074844a4e758209dcfd8ce12720680edd957b42 (diff) | |
download | UXP-cefee262b7059d035667b148d56ebc7af5120d37.tar UXP-cefee262b7059d035667b148d56ebc7af5120d37.tar.gz UXP-cefee262b7059d035667b148d56ebc7af5120d37.tar.lz UXP-cefee262b7059d035667b148d56ebc7af5120d37.tar.xz UXP-cefee262b7059d035667b148d56ebc7af5120d37.zip |
1333143 - Self-host Object.prototype.valueOf.
Diffstat (limited to 'js/src/jit-test/tests/basic/bug713226.js')
-rw-r--r-- | js/src/jit-test/tests/basic/bug713226.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/jit-test/tests/basic/bug713226.js b/js/src/jit-test/tests/basic/bug713226.js index 3ae991f43..36858b86c 100644 --- a/js/src/jit-test/tests/basic/bug713226.js +++ b/js/src/jit-test/tests/basic/bug713226.js @@ -8,7 +8,7 @@ function addDebug(g, id) {\ var debuggerGlobal = newGlobal();\ debuggerGlobal.debuggee = g;\ debuggerGlobal.id = id;\ - debuggerGlobal.print = function (s) { (g) += s; };\ + debuggerGlobal.print = function (s) { print(s); };\ debuggerGlobal.eval('var dbg = new Debugger(debuggee);dbg.onDebuggerStatement = function () { print(id); debugger; };');\ return debuggerGlobal;\ }\ |