module DEBUGGER__::UI_DAP
def self.remote_to_local_path path
def self.remote_to_local_path path case @local_fs_map when nil nil when true path else # Array @local_fs_map.each do |(remote_path_prefix, local_path_prefix)| if path.start_with? remote_path_prefix return path.sub(remote_path_prefix){ local_path_prefix } end end nil end end