summaryrefslogtreecommitdiff
path: root/lib/irb/command/delete.rb
blob: 2a57a4a3de06d2a15ab8928206d51c03a43ef968 (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(arg)
        execute_debug_command(pre_cmds: "delete #{arg}")
      end
    end
  end

  # :startdoc:
end