From 949c8073e29554a897d764dcd05930bcb626e377 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Tue, 18 Apr 2023 10:34:13 +0200 Subject: [PATCH] ensure proposed API is checked for (#180194) fy @roblourens and @mblout --- src/vs/workbench/api/common/extHost.api.impl.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/api/common/extHost.api.impl.ts b/src/vs/workbench/api/common/extHost.api.impl.ts index 6bb3af739e5..4bc7878a340 100644 --- a/src/vs/workbench/api/common/extHost.api.impl.ts +++ b/src/vs/workbench/api/common/extHost.api.impl.ts @@ -1124,6 +1124,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I return extHostDebugService.onDidChangeBreakpoints(listener, thisArgs, disposables); }, onDidChangeStackFrameFocus(listener, thisArg?, disposables?) { + checkProposedApiEnabled(extension, 'debugFocus'); return extHostDebugService.onDidChangeStackFrameFocus(listener, thisArg, disposables); }, registerDebugConfigurationProvider(debugType: string, provider: vscode.DebugConfigurationProvider, triggerKind?: vscode.DebugConfigurationProviderTriggerKind) {