diff --git a/lib/opcode.js b/lib/opcode.js index 9e4cfe3..2471fba 100644 --- a/lib/opcode.js +++ b/lib/opcode.js @@ -233,4 +233,13 @@ Opcode.isSmallIntOp = function(opcode) { ((opcode >= Opcode.map.OP_1) && (opcode <= Opcode.map.OP_16))); }; +/** + * Will return a string formatted for the console + * + * @returns {String} Script opcode + */ +Opcode.prototype.inspect = function() { + return ''; +}; + module.exports = Opcode;