summaryrefslogtreecommitdiff
path: root/lib/irb/command/continue.rb
blob: 8b6ffc860ce6c9c7409dc3752a47af0f646ce484 (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(*args)
        super(do_cmds: ["continue", *args].join(" "))
      end
    end
  end

  # :startdoc:
end