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