Sha256: 63fa76f205db2e31fefe0ab56839548dd7f999d325ed32c99aca3f89a40bc357

Contents?: true

Size: 1.89 KB

Versions: 4

Compression:

Stored size: 1.89 KB

Contents

module WebConsole
  module Rubinius
    # Filters internal Rubinius locations.
    #
    # There are a couple of reasons why we wanna filter out the locations.
    #
    # * ::Kernel.raise, is implemented in Ruby for Rubinius. We don't wanna
    #   have the frame for it to align with the CRuby and JRuby implementations.
    #
    # * For internal methods location variables can be nil. We can't create a
    #   bindings for them.
    #
    # * Bindings from the current file are considered internal and ignored.
    #
    # We do that all that so we can align the bindings with the backtraces
    # entries.
    class InternalLocationFilter
      def initialize(locations)
        @locations = locations
      end

      def filter
        @locations.reject do |location|
          location.file.start_with?('kernel/delta/kernel.rb') ||
            location.file == __FILE__ ||
            location.variables.nil?
        end
      end
    end

    # Gets the current bindings for all available Ruby frames.
    #
    # Filters the internal Rubinius and WebConsole frames.
    def self.current_bindings
      locations = ::Rubinius::VM.backtrace(1, true)

      InternalLocationFilter.new(locations).filter.map do |location|
        Binding.setup(
          location.variables,
          location.variables.method,
          location.constant_scope,
          location.variables.self,
          location
        )
      end
    end
  end
end

::Exception.class_eval do
  def bindings
    @bindings || []
  end
end

::Rubinius.singleton_class.class_eval do
  def raise_exception_with_current_bindings(exc)
    if exc.bindings.empty?
      exc.instance_variable_set(:@bindings, WebConsole::Rubinius.current_bindings)
    end

    raise_exception_without_current_bindings(exc)
  end

  alias_method :raise_exception_without_current_bindings, :raise_exception
  alias_method :raise_exception, :raise_exception_with_current_bindings
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
web-console-2.3.0 lib/web_console/integration/rubinius.rb
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/web-console-2.2.1/lib/web_console/integration/rubinius.rb
web-console-2.2.1 lib/web_console/integration/rubinius.rb
web-console-2.2.0 lib/web_console/integration/rubinius.rb