Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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");