Class: DEBUGGER__::UI_Base
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
|
|
Inherits: | Object |
Defined in: | lib/debug/session.rb |
Instance Attribute Summary
- #ignore_output_on_suspend? ⇒ Boolean readonly
Instance Method Summary
Instance Attribute Details
#ignore_output_on_suspend? ⇒ Boolean
(readonly)
[ GitHub ]
# File 'lib/debug/session.rb', line 2173
def ignore_output_on_suspend? false end
Instance Method Details
#event(type, *args)
[ GitHub ]# File 'lib/debug/session.rb', line 2163
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
#flush
[ GitHub ]# File 'lib/debug/session.rb', line 2177
def flush end