remove console.logs

This commit is contained in:
Manuel Araoz 2014-03-07 18:09:06 -03:00
parent 9a64cb0ea1
commit 3284bfcb2f

View File

@ -27,7 +27,6 @@ function spec(b) {
throw new Error("ScriptInterpreter.eval() requires a callback"); throw new Error("ScriptInterpreter.eval() requires a callback");
} }
console.log(script);
var pc = 0; var pc = 0;
@ -395,8 +394,6 @@ function spec(b) {
// (x1 x2 - bool) // (x1 x2 - bool)
var v1 = this.stackTop(2); var v1 = this.stackTop(2);
var v2 = this.stackTop(1); var v2 = this.stackTop(1);
console.log(v1);
console.log(v2);
var value = buffertools.compare(v1, v2) === 0; var value = buffertools.compare(v1, v2) === 0;
// OP_NOTEQUAL is disabled because it would be too easy to say // OP_NOTEQUAL is disabled because it would be too easy to say