Browse Source

Merge branch 'debugger-bytecode-spacing'

pull/156/head
Sami Vaarala 10 years ago
parent
commit
36ad012e8c
  1. 2
      debugger/duk_debug.js

2
debugger/duk_debug.js

@ -1060,7 +1060,7 @@ Debugger.prototype.decodeBytecodeFromBuffer = function (buf, consts, funcs) {
str = sprintf('%05d %08x %-10s', pc, ins, op.name); str = sprintf('%05d %08x %-10s', pc, ins, op.name);
} }
if (comments.length > 0) { if (comments.length > 0) {
str = sprintf('%-40s ; %s', str, comments.join(', ')); str = sprintf('%-44s ; %s', str, comments.join(', '));
} }
res.push({ res.push({

Loading…
Cancel
Save