summaryrefslogtreecommitdiff
path: root/lib/irb/command/step.rb
blob: 29e5e35ac0135b01d39e153374b309c1af180cf5 (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 Step < DebugCommand
      def execute(arg)
        execute_debug_command(do_cmds: "step #{arg}")
      end
    end
  end

  # :startdoc:
end