File Manager

Path: /opt/cpanel/ea-ruby27/root/usr/local/share/gems/gems/irb-1.18.0/lib/irb/command/

Viewing File: finish.rb

# 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