lib/ruby-debug/event_processor.rb in ruby-debug-ide-0.4.11 vs lib/ruby-debug/event_processor.rb in ruby-debug-ide-0.4.16

- old
+ new

@@ -30,15 +30,15 @@ def at_tracing(context, file, line) @printer.print_trace(context, file, line) end def at_line(context, file, line) - @printer.print_at_line(file, line) if context.nil? || context.stop_reason == :step + @printer.print_at_line(context, file, line) if context.nil? || context.stop_reason == :step line_event(context, file, line) end def at_return(context, file, line) - @printer.print_at_line(file, line) + @printer.print_at_line(context, file, line) context.stop_frame = -1 line_event(context, file, line) end def line_event(context, file, line)