[INFER] Remove uses of DEBUG-only dis() from tests.

This commit is contained in:
Brian Hackett 2011-05-22 21:48:20 -07:00
parent bdd6f8267a
commit e9ac12ed3c
3 changed files with 0 additions and 3 deletions

View File

@ -2,7 +2,6 @@
setDebug(true);
x = "notset";
dis(myparent);
function myparent(nested) {
if (nested) {
/* noop call in myparent */

View File

@ -4,7 +4,6 @@ x = "notset";
function doNothing() { }
dis(myparent);
function myparent(nested) {
if (nested) {
/* JSOP_CALL to doNothing in myparent with nested = true. */

View File

@ -7,5 +7,4 @@ function f(a, b, c) {
this.restoreWindow(a, b, c);
eval();
}
dis(f);
f(1, 2, 3);