Browse Source

Merge branch 'debugger-bytecode-view-spacing'

pull/156/head
Sami Vaarala 10 years ago
parent
commit
5cb0ee4468
  1. 4
      debugger/duk_debug.js

4
debugger/duk_debug.js

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

Loading…
Cancel
Save