(entry: EditorSessionEntry)
| 87 | private entries = new Map<string, EditorSessionEntry>() |
| 88 | |
| 89 | addSession(entry: EditorSessionEntry): void { |
| 90 | logger.debug(`Adding session to session registry: ${entry.socketPath}`) |
| 91 | this.entries.set(entry.socketPath, entry) |
| 92 | } |
| 93 | |
| 94 | getCandidatesForFile(filePath: string): EditorSessionEntry[] { |
| 95 | const matchCheckResults = new Map<string, boolean>() |
no outgoing calls
no test coverage detected