| 1 | import { PathKind, PathWin32, PathPosix } from "./path_kind"; |
| 2 | |
| 3 | interface Mapping { |
| 4 | "remote": string; |
| 5 | "local": string; |
| 6 | } |
| 7 | |
| 8 | export class SourceFileMap { |
| 9 | private sortedMappings: { [key in keyof Mapping]: Mapping[] } = {remote: [], local: []}; |
nothing calls this directly
no outgoing calls
no test coverage detected