Browse Source

remove console.logs

patch-2
Manuel Araoz 11 years ago
parent
commit
3284bfcb2f
  1. 3
      ScriptInterpreter.js

3
ScriptInterpreter.js

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

Loading…
Cancel
Save