debug: update visualizers tree proposal, some initial implementation (#204877)

This commit is contained in:
Connor Peet
2024-02-13 09:22:06 -08:00
committed by GitHub
parent 1f57cd8267
commit a2c91f1f28
15 changed files with 640 additions and 92 deletions

View File

@@ -1229,6 +1229,10 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
checkProposedApiEnabled(extension, 'debugVisualization');
return extHostDebugService.registerDebugVisualizationProvider(extension, id, provider);
},
registerDebugVisualizationTreeProvider(id, provider) {
checkProposedApiEnabled(extension, 'debugVisualization');
return extHostDebugService.registerDebugVisualizationTree(extension, id, provider);
},
onDidStartDebugSession(listener, thisArg?, disposables?) {
return _asExtensionEvent(extHostDebugService.onDidStartDebugSession)(listener, thisArg, disposables);
},