Sha256: 011d4ff64a9ca2e2792810e91315fd9c310ceae4d593958fd3bfba28cea355fb

Contents?: true

Size: 301 Bytes

Versions: 1

Compression:

Stored size: 301 Bytes

Contents

module Byebug
  class Context

    def inspect
      values = %w{
        thread thnum stop_reason tracing ignored? stack_size dead? frame_line frame_file frame_self
      }.map do |field|
        "#{field}: #{send(field)}"
      end.join(", ")
      "#<Byebug::Context #{values}>"
    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
byebug-0.0.1 test/support/context.rb