class DEBUGGER__::UI_Base

Public Instance Methods

event(type, *args) click to toggle source
# File debug-1.4.0/lib/debug/session.rb, line 1854
def event type, *args
  case type
  when :suspend_bp
    i, bp = *args
    puts "\nStop by \##{i} #{bp}" if bp
  when :suspend_trap
    puts "\nStop by #{args.first}"
  end
end