module DEBUGGER__::UI_CDP

def get_source_code path

def get_source_code path
  return @src_map[path] if @src_map[path]
  src = File.read(path)
  @src_map[path] = src
  src
end