Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/debug/browser/debug.service.contribution.ts
13401 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { registerSingleton, InstantiationType } from '../../../../platform/instantiation/common/extensions.js';
7
import { DebugService } from './debugService.js';
8
import { IDebugService } from '../common/debug.js';
9
import { IDebugVisualizerService, DebugVisualizerService } from '../common/debugVisualizers.js';
10
11
registerSingleton(IDebugService, DebugService, InstantiationType.Delayed);
12
registerSingleton(IDebugVisualizerService, DebugVisualizerService, InstantiationType.Delayed);
13
14