Method: DEBUGGER__::LineBreakpoint#to_s

Defined in:
lib/debug/breakpoint.rb

#to_sObject



283
284
285
286
287
288
289
290
291
# File 'lib/debug/breakpoint.rb', line 283

def to_s
  oneshot = @oneshot ? " (oneshot)" : ""

  if @iseq
    "#{generate_label("Line")} #{@path}:#{@line} (#{@type})#{oneshot}" + super
  else
    "#{generate_label("Line (pending)")} #{@path}:#{@line}#{oneshot}" + super
  end
end