File Manager

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

Viewing File: force_exit.rb

# frozen_string_literal: true

module IRB
  # :stopdoc:

  module Command
    class ForceExit < Base
      category "IRB"
      description "Exit the current process."

      def execute(_arg)
        throw :IRB_EXIT, true
      end
    end
  end

  # :startdoc:
end