Backed out changeset de5d1b528b9a
[mozilla-central.git] / js / src / trace-test / tests / jaeger / bug563000 / simple-trap-2.js
bloba2b8d32d76de8bbbd355419779f7c7a927dd6e92
1 setDebug(true);
2 var x = "notset";
3 function main() { x = "failure"; }
4 function success() { x = "success"; }
6 /* The JSOP_STOP in a. */
7 trap(main, 6, "success()");
8 main();
10 assertEq(x, "success");