add DA Tracker API; fixes #55945

This commit is contained in:
Andre Weinand
2018-09-20 23:09:00 +02:00
parent 5db58b3867
commit 88b85b66c3
7 changed files with 161 additions and 26 deletions

View File

@@ -149,10 +149,11 @@ export class MainThreadDebugService implements MainThreadDebugServiceShape, IDeb
}
public $registerDebugConfigurationProvider(debugType: string, hasProvide: boolean, hasResolve: boolean, hasProvideDebugAdapter: boolean, handle: number): Thenable<void> {
public $registerDebugConfigurationProvider(debugType: string, hasProvide: boolean, hasResolve: boolean, hasProvideDebugAdapter: boolean, hasTracker: boolean, handle: number): Thenable<void> {
const provider = <IDebugConfigurationProvider>{
type: debugType
type: debugType,
hasTracker: hasTracker
};
if (hasProvide) {
provider.provideDebugConfigurations = (folder) => {