summaryrefslogtreecommitdiff
path: root/lib/irb/command/delete.rb
blob: a36b4577b0c23eccf53ba825bedf3f9d88cad2b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require_relative "debug"

module IRB
  # :stopdoc:

  module Command
    class Delete < DebugCommand
      def execute(*args)
        super(pre_cmds: ["delete", *args].join(" "))
      end
    end
  end

  # :startdoc:
end