pry-exception_explorer icon indicating copy to clipboard operation
pry-exception_explorer copied to clipboard

v>0.1.9 causes pry-stack_explorer to step through pry-debugger frames

Open rking opened this issue 11 years ago • 2 comments

cat > Gemfile <<EOT
source :rubygems
gem 'pry'
gem 'pry-exception_explorer'
gem 'pry-debugger'
gem 'pry-stack_explorer'
gem 'micro_test'
EOT
bundle
bundle exec mt --demo --pry

Then you'll notice whereami is in the assert itself, which I think is on mciro_test to fix, but when you hit up you'll end up in:

From: /Users/rking/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/pry-debugger-0.2.1/lib/pry-debugger/processor.rb @ line 18 PryDebugger::Processor#run:

Then the next one is: the command = catch(:breakout_nav) just a line above that, then the next is:

/Users/rking/.rbenv/versions/1.9.3-p125/lib/ruby/gems/1.9.1/gems/pry-debugger-0.2.1/lib/pry-debugger/pry_ext.rb @ line 14 Pry.start_with_pry_debugger:

Then it keeps messing up til several frames later. Here's the showterm of it:

http://showterm.io/1ed7b6e9426bbbfa85345

rking avatar Jan 19 '13 03:01 rking