Sha256: 3e281dd20bfe61ea59ccc6c8cd8d631491752599b571f3cc58e2b65899389464

Contents?: true

Size: 201 Bytes

Versions: 2

Compression:

Stored size: 201 Bytes

Contents

debugger

class CatchExample
  def a
    begin
      Debugger.post_mortem do
z = 100
        raise 'blabla'
        x = 6
      end
    rescue => e
      e
    end
  end
end

c = CatchExample.new
c.a
c

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
debugger2-1.0.0.beta2 test/examples/post_mortem.rb
debugger2-1.0.0.beta1 test/examples/post_mortem.rb