(session: vscode.DebugSession, prop: string)
| 696 | } |
| 697 | |
| 698 | private getCurrentProp(session: vscode.DebugSession, prop: string) { |
| 699 | const args = this.getCurrentArgs(session); |
| 700 | return args ? args[prop] : undefined; |
| 701 | } |
| 702 | |
| 703 | // Assuming 'session' valid and it a cortex-debug session |
| 704 | private isDebugging(session: vscode.DebugSession) { |
no test coverage detected