class Pry::Byebug::Breakpoints::FileBreakpoint

Breakpoint in a file:line location

Public Instance Methods

source_code() click to toggle source
# File lib/pry/byebug/breakpoints.rb, line 15
def source_code
  Pry::Code.from_file(source).around(pos, 3).with_marker(pos)
end
to_s() click to toggle source
# File lib/pry/byebug/breakpoints.rb, line 19
def to_s
  "#{source} @ #{pos}"
end