Sha256: 4aedbf5779e0aeb86a6cfe130913042b455aaeffb11e86b4f45e29260a6ddad4

Contents?: true

Size: 806 Bytes

Versions: 6770

Compression:

Stored size: 806 Bytes

Contents

# frozen_string_literal: true

require_relative "command_processor"

module Byebug
  #
  # Processes commands from a file
  #
  class ScriptProcessor < CommandProcessor
    #
    # Available commands
    #
    def commands
      super.select(&:allow_in_control)
    end

    def repl
      while (input = interface.read_command(prompt))
        safely do
          command = command_list.match(input)
          raise CommandNotFound.new(input) unless command

          command.new(self, input).execute
        end
      end
    end

    def after_repl
      super

      interface.close
    end

    #
    # Prompt shown before reading a command.
    #
    def prompt
      "(byebug:ctrl) "
    end

    private

    def without_exceptions
      yield
    rescue StandardError
      nil
    end
  end
end

Version data entries

6,770 entries across 6,767 versions & 30 rubygems

Version Path
passbase-1.0.1 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.3/lib/byebug/processors/script_processor.rb
passbase-1.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.3/lib/byebug/processors/script_processor.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/byebug-11.1.3/lib/byebug/processors/script_processor.rb
byebug-11.1.3 lib/byebug/processors/script_processor.rb
byebug-11.1.2 lib/byebug/processors/script_processor.rb
talon_one-2.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/processors/script_processor.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/processors/script_processor.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/processors/script_processor.rb
byebug-11.1.1 lib/byebug/processors/script_processor.rb
byebug-11.1.0 lib/byebug/processors/script_processor.rb