mirror of
https://github.com/ruby/ruby.git
synced 2026-01-28 21:14:28 +00:00
18 lines
256 B
Ruby
18 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
|