Debugger::Processor
# File lib/debugger/xml/ide/processor.rb, line 15 def at_breakpoint(context, breakpoint) raise "@last_breakpoint supposed to be nil. is #{@last_breakpoint}" if @last_breakpoint # at_breakpoint is immediately followed by #at_line event. So postpone breakpoint printing until #at_line. @last_breakpoint = breakpoint end
TODO: Catching exceptions doesn’t work so far, need to fix
# File lib/debugger/xml/ide/processor.rb, line 23 def at_catchpoint(context, excpt) end
# File lib/debugger/xml/ide/processor.rb, line 30 def at_line(context, file, line) if context.nil? || context.stop_reason == :step print_file_line(context, file, line) end line_event(context, file, line) end
# File lib/debugger/xml/ide/processor.rb, line 44 def at_line? !!@line end
Generated with the Darkfish Rdoc Generator 2.