[INFER] Remove uses of DEBUG-only dis() from tests.
[INFER] Remove uses of DEBUG-only dis() from tests.
--- a/js/src/jit-test/tests/jaeger/bug563000/trap-self-as-parent.js
+++ b/js/src/jit-test/tests/jaeger/bug563000/trap-self-as-parent.js
@@ -1,13 +1,12 @@
// |jit-test| debug
setDebug(true);
x = "notset";
-dis(myparent);
function myparent(nested) {
if (nested) {
/* noop call in myparent */
trap(myparent, 58, "success()");
} else {
myparent(true);
x = "failure";
noop();
--- a/js/src/jit-test/tests/jaeger/bug563000/trap-self-from-trap.js
+++ b/js/src/jit-test/tests/jaeger/bug563000/trap-self-from-trap.js
@@ -1,15 +1,14 @@
// |jit-test| debug
setDebug(true);
x = "notset";
function doNothing() { }
-dis(myparent);
function myparent(nested) {
if (nested) {
/* JSOP_CALL to doNothing in myparent with nested = true. */
trap(myparent, 30, "success()");
doNothing();
} else {
doNothing();
}
--- a/js/src/jit-test/tests/jaeger/bug600139.js
+++ b/js/src/jit-test/tests/jaeger/bug600139.js
@@ -2,10 +2,9 @@
// vim: set ts=4 sw=4 tw=99 et:
function f(a, b, c) {
if (!a.__SSi) {
throw Components.returnCode = Cr.NS_ERROR_INVALID_ARG;
}
this.restoreWindow(a, b, c);
eval();
}
-dis(f);
f(1, 2, 3);