(session: vscode.DebugSession)
| 91 | } |
| 92 | |
| 93 | public static FindSession(session: vscode.DebugSession) { |
| 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; |
no test coverage detected