Leandro Gomez

Results 2 comments of Leandro Gomez

Actually the command is defined in `byebug` gem: ``` ruby def print_backtrace bt = prc('frame.line', (0...context.stack_size)) do |_, index| Frame.new(context, index).to_hash end print(bt) end ``` If you monkey patch it...

> > Actually the command is defined in `byebug` gem: > > ```ruby > > def print_backtrace > > bt = prc('frame.line', (0...context.stack_size)) do |_, index| > > Frame.new(context, index).to_hash...