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

- old
+ new

@@ -5,15 +5,11 @@ module IRB # :stopdoc: module Command class Break < DebugCommand - def self.transform_args(args) - args&.dump - end - - def execute(args = nil) - super(pre_cmds: "break #{args}") + def execute(arg) + execute_debug_command(pre_cmds: "break #{arg}") end end end # :startdoc: