lib/irb/command/next.rb in irb-1.12.0 vs lib/irb/command/next.rb in irb-1.13.0

- old
+ new

@@ -5,11 +5,11 @@ module IRB # :stopdoc: module Command class Next < DebugCommand - def execute(*args) - super(do_cmds: ["next", *args].join(" ")) + def execute(arg) + execute_debug_command(do_cmds: "next #{arg}") end end end # :startdoc: