* TaskProviderLike, TelemetryPropertiesProvider
()
| 2945 | */ |
| 2946 | |
| 2947 | public getCurrentTask(): Task | undefined { |
| 2948 | if (this.clineStack.length === 0) { |
| 2949 | return undefined |
| 2950 | } |
| 2951 | |
| 2952 | return this.clineStack[this.clineStack.length - 1] |
| 2953 | } |
| 2954 | |
| 2955 | private logWebviewHiddenDiagnostics(): void { |
| 2956 | const task = this.getCurrentTask() |
no outgoing calls
no test coverage detected