@@ -8,7 +8,7 @@ import { ConnectionHandler } from './handler';
88import { StdioConnectionHandler } from './handlers/stdio' ;
99import { TcpConnectionHandler } from './handlers/tcp' ;
1010import { IFeature } from './feature' ;
11- import { DebugConfigurationFeature } from './feature/DebugConfigurationFeature ' ;
11+ import { DebuggingFeature } from './feature/DebuggingFeature ' ;
1212import { FormatDocumentFeature } from './feature/FormatDocumentFeature' ;
1313import { NodeGraphFeature } from './feature/NodeGraphFeature' ;
1414import { PDKFeature } from './feature/PDKFeature' ;
@@ -23,6 +23,7 @@ import { DockerConnectionHandler } from './handlers/docker';
2323
2424export const puppetLangID = 'puppet' ; // don't change this
2525export const puppetFileLangID = 'puppetfile' ; // don't change this
26+ const debugType = 'Puppet' ; // don't change this
2627
2728let extContext : vscode . ExtensionContext ;
2829let connectionHandler : ConnectionHandler ;
@@ -72,11 +73,11 @@ export function activate(context: vscode.ExtensionContext) {
7273 }
7374
7475 extensionFeatures = [
75- new DebugConfigurationFeature ( logger , extContext ) ,
7676 new FormatDocumentFeature ( puppetLangID , connectionHandler , settings , logger , extContext ) ,
7777 new NodeGraphFeature ( puppetLangID , connectionHandler , logger , extContext ) ,
7878 new PDKFeature ( extContext , logger ) ,
79- new PuppetResourceFeature ( extContext , connectionHandler , logger )
79+ new PuppetResourceFeature ( extContext , connectionHandler , logger ) ,
80+ new DebuggingFeature ( debugType , settings , configSettings , extContext , logger )
8081 ] ;
8182}
8283
0 commit comments