mirror of
https://github.com/ruby/ruby.git
synced 2026-08-21 17:32:51 +08:00
descriptions (https://github.com/ruby/irb/pull/463) https://github.com/ruby/irb/commit/7e857655ac
18 lines
260 B
Ruby
18 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "debug"
|
|
|
|
module IRB
|
|
# :stopdoc:
|
|
|
|
module ExtendCommand
|
|
class Delete < DebugCommand
|
|
def execute(*args)
|
|
super(pre_cmds: ["delete", *args].join(" "))
|
|
end
|
|
end
|
|
end
|
|
|
|
# :startdoc:
|
|
end
|