lib/irb/command/finish.rb in irb-1.12.0 vs lib/irb/command/finish.rb in irb-1.13.0
- old
+ new
@@ -5,11 +5,11 @@
module IRB
# :stopdoc:
module Command
class Finish < DebugCommand
- def execute(*args)
- super(do_cmds: ["finish", *args].join(" "))
+ def execute(arg)
+ execute_debug_command(do_cmds: "finish #{arg}")
end
end
end
# :startdoc: