ruby/lib/irb/command/delete.rb
Hiroshi SHIBATA 077558ee2b
[Bug #20511] Update reline-0.5.7 (#10848)
* Update reline-0.5.7

* Update irb-1.13.1
2024-05-28 15:54:39 -07:00

17 lines
256 B
Ruby

# frozen_string_literal: true
require_relative "debug"
module IRB
# :stopdoc:
module Command
class Delete < DebugCommand
def execute(arg)
execute_debug_command(pre_cmds: "delete #{arg}")
end
end
end
# :startdoc:
end