(contentId: string)
| 326 | } |
| 327 | |
| 328 | public getData(contentId: string): DataItem[] { |
| 329 | // Dummy data for demonstration; replace with your actual data fetching logic |
| 330 | const dummyData: Record<string, DataItem[]> = { |
| 331 | navigator: [{ text: 'Navigator Item 1' }, { text: 'Navigator Item 2' }], |
| 332 | executor: [{ text: 'Executor Item 1' }, { text: 'Executor Item 2' }], |
| 333 | editor: [{ text: 'Editor Item 1' }, { text: 'Editor Item 2' }], |
| 334 | terminal: [{ text: 'Terminal Item 1' }, { text: 'Terminal Item 2' }], |
| 335 | }; |
| 336 | return dummyData[contentId] || []; |
| 337 | } |
| 338 | |
| 339 | private _getHtmlForWebview(webview: vscode.Webview) { |
| 340 | const scriptUri = webview.asWebviewUri(vscode.Uri.joinPath(this._extensionUri, 'media', 'main.js')); |
nothing calls this directly
no outgoing calls
no test coverage detected