Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | // |jit-test| debug |
michael@0 | 2 | // Returning and throwing objects. |
michael@0 | 3 | |
michael@0 | 4 | load(libdir + "asserts.js"); |
michael@0 | 5 | |
michael@0 | 6 | var g = newGlobal(); |
michael@0 | 7 | g.debuggeeGlobal = this; |
michael@0 | 8 | g.eval("(" + function () { |
michael@0 | 9 | var how, what; |
michael@0 | 10 | var dbg = new Debugger(debuggeeGlobal); |
michael@0 | 11 | dbg.onDebuggerStatement = function (frame) { |
michael@0 | 12 | if (frame.callee.name === "configure") { |
michael@0 | 13 | how = frame.arguments[0]; |
michael@0 | 14 | what = frame.arguments[1]; |
michael@0 | 15 | } else { |
michael@0 | 16 | var resume = {}; |
michael@0 | 17 | resume[how] = what; |
michael@0 | 18 | return resume; |
michael@0 | 19 | } |
michael@0 | 20 | }; |
michael@0 | 21 | } + ")();"); |
michael@0 | 22 | |
michael@0 | 23 | function configure(how, what) { debugger; } |
michael@0 | 24 | function fire() { debugger; } |
michael@0 | 25 | |
michael@0 | 26 | var d = new Date; |
michael@0 | 27 | configure('return', d); |
michael@0 | 28 | assertEq(fire(), d); |
michael@0 | 29 | configure('return', Math); |
michael@0 | 30 | assertEq(fire(), Math); |
michael@0 | 31 | |
michael@0 | 32 | var x = new Error('oh no what are you doing'); |
michael@0 | 33 | configure('throw', x); |
michael@0 | 34 | assertThrowsValue(fire, x); |
michael@0 | 35 | configure('throw', parseInt); |
michael@0 | 36 | assertThrowsValue(fire, parseInt); |