(id: string)
| 225 | } |
| 226 | |
| 227 | private touch(id: string): void { |
| 228 | const session = this.sessions.get(id); |
| 229 | if (!session) return; |
| 230 | session.info.lastUsedAt = Date.now(); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | function resolveBackendKind(explicit?: DebuggerBackendKind): DebuggerBackendKind { |
no test coverage detected