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

  # :startdoc:
end