class DEBUGGER__::Session

def add_line_breakpoint file, line, **kw

def add_line_breakpoint file, line, **kw
  file = resolve_path(file)
  bp = LineBreakpoint.new(file, line, **kw)
  add_bp bp
rescue Errno::ENOENT => e
  @ui.puts e.message
end