class Rubinius::Debugger::Command::Disassemble

Public Instance Methods

run(args) click to toggle source
# File lib/rubinius/debugger/commands.rb, line 531
def run(args)
  if args and args.strip == "all"
    section "Bytecode for #{current_frame.method.name}"
    puts current_method.decode
  else
    @debugger.show_bytecode
  end
end