lib/byebug/dap/command_processor.rb in byebug-dap-0.1.1 vs lib/byebug/dap/command_processor.rb in byebug-dap-0.1.2
- old
+ new
@@ -101,15 +101,13 @@
end
def stopped!
case context.stop_reason
when :breakpoint
- number = Byebug.breakpoints.index(@at_breakpoint) + 1
-
args = {
reason: 'breakpoint',
description: 'Hit breakpoint',
- text: "Stopped by breakpoint #{number} at #{context.frame.file}:#{context.frame.line}",
+ text: "Stopped by breakpoint at #{context.frame.file}:#{context.frame.line}",
}
when :catchpoint
# TODO this is probably not the right message
args = {