comparison: js/src/jit-test/tests/debug/Object-evalInGlobal-09.js
js/src/jit-test/tests/debug/Object-evalInGlobal-09.js
- branch
- TOR_BUG_3246
- changeset 7
- 129ffea94266
equal
deleted
inserted
replaced
|
1 // The frame created for evalInGlobal is never marked as a 'FUNCTION' frame. |
|
2 |
|
3 (function () { |
|
4 var g = newGlobal(); |
|
5 var dbg = new Debugger; |
|
6 var gw = dbg.addDebuggee(g); |
|
7 gw.evalInGlobalWithBindings("eval('Math')",{}).return |
|
8 })(); |
|
9 |