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

  # :startdoc:
end