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.
1 // |jit-test| debug
2 setDebug(true);
3 x = "notset";
5 function child() {
6 x = "failure1";
7 /* JSOP_STOP in parent. */
8 trap(parent, 16, "success()");
9 }
11 function parent() {
12 x = "failure2";
13 }
14 /* First op in parent. */
15 trap(parent, 0, "child()");
17 function success() {
18 x = "success";
19 }
21 parent();
22 assertEq(x, "success");