summaryrefslogtreecommitdiff
path: root/lib/irb/command/break.rb
blob: a8f81fe665077bd41b644dec3038198671c867c4 (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 Break < DebugCommand
      def execute(arg)
        execute_debug_command(pre_cmds: "break #{arg}")
      end
    end
  end

  # :startdoc:
end