(id: string)
| 94 | return CDebugSession.FindSessionById(session.id); |
| 95 | } |
| 96 | public static FindSessionById(id: string) { |
| 97 | const ret = CDebugSession.CurrentSessions.find((x) => x.session.id === id); |
| 98 | return ret; |
| 99 | } |
| 100 | public static GetSession(session: vscode.DebugSession, config?: ConfigurationArguments | undefined): CDebugSession { |
| 101 | const prev = CDebugSession.FindSessionById(session.id); |
| 102 | if (prev) { |
no outgoing calls
no test coverage detected