@codingame/monaco-vscode-debug-service-override 25.1.2 → 26.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/vscode/src/vs/platform/debug/common/extensionHostDebugIpc.js +41 -29
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +379 -255
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +606 -325
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +132 -91
- package/vscode/src/vs/workbench/contrib/debug/browser/debugChatIntegration.js +105 -103
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +258 -147
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +14 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +163 -121
- package/vscode/src/vs/workbench/contrib/debug/browser/debugMemory.js +92 -41
- package/vscode/src/vs/workbench/contrib/debug/browser/debugProgress.js +13 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +68 -39
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +290 -214
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +409 -260
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSettingMigration.js +14 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +19 -21
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +126 -100
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTitle.js +8 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +160 -89
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +87 -71
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +270 -181
- package/vscode/src/vs/workbench/contrib/debug/browser/extensionHostDebugService.js +79 -48
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +149 -113
- package/vscode/src/vs/workbench/contrib/debug/browser/media/debugViewlet.css +24 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +201 -189
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +28 -35
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibleView.js +10 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +66 -86
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +24 -31
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +177 -138
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +55 -33
- package/vscode/src/vs/workbench/contrib/debug/common/breakpoints.js +2 -4
- package/vscode/src/vs/workbench/contrib/debug/common/debugAccessibilityAnnouncer.js +8 -12
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +23 -19
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +9 -15
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +156 -133
- package/vscode/src/vs/workbench/contrib/debug/common/debugStorage.js +81 -52
- package/vscode/src/vs/workbench/contrib/debug/common/debugTelemetry.js +3 -5
- package/vscode/src/vs/workbench/contrib/debug/common/debugViewModel.js +22 -14
- package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.js +46 -30
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +74 -52
- package/vscode/src/vs/workbench/contrib/debug/common/replAccessibilityAnnouncer.js +11 -10
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +7 -7
|
@@ -32,7 +32,21 @@ import { ILifecycleService } from '@codingame/monaco-vscode-api/vscode/vs/workbe
|
|
|
32
32
|
|
|
33
33
|
const jsonRegistry = ( Registry.as(Extensions.JSONContribution));
|
|
34
34
|
let AdapterManager = class AdapterManager extends Disposable {
|
|
35
|
-
constructor(
|
|
35
|
+
constructor(
|
|
36
|
+
delegate,
|
|
37
|
+
editorService,
|
|
38
|
+
configurationService,
|
|
39
|
+
quickInputService,
|
|
40
|
+
instantiationService,
|
|
41
|
+
commandService,
|
|
42
|
+
extensionService,
|
|
43
|
+
contextKeyService,
|
|
44
|
+
languageService,
|
|
45
|
+
dialogService,
|
|
46
|
+
lifecycleService,
|
|
47
|
+
tasksService,
|
|
48
|
+
menuService
|
|
49
|
+
) {
|
|
36
50
|
super();
|
|
37
51
|
this.delegate = delegate;
|
|
38
52
|
this.editorService = editorService;
|
|
@@ -71,12 +85,13 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
71
85
|
this.debugExtensionsAvailable.set(this.debuggers.length > 0);
|
|
72
86
|
}));
|
|
73
87
|
const updateTaskScheduler = this._register(( new RunOnceScheduler(() => this.updateTaskLabels(), 5000)));
|
|
74
|
-
this._register(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
88
|
+
this._register(
|
|
89
|
+
Event.any(tasksService.onDidChangeTaskConfig, tasksService.onDidChangeTaskProviders)(() => {
|
|
90
|
+
updateTaskScheduler.cancel();
|
|
91
|
+
updateTaskScheduler.schedule();
|
|
92
|
+
})
|
|
93
|
+
);
|
|
94
|
+
this.lifecycleService.when(LifecyclePhase.Eventually).then(() => this.debugExtensionsAvailable.set(this.debuggers.length > 0));
|
|
80
95
|
this._register(delegate.onDidNewSession(s => {
|
|
81
96
|
this.usedDebugTypes.add(s.configuration.type);
|
|
82
97
|
}));
|
|
@@ -86,15 +101,14 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
86
101
|
debuggersExtPoint.setHandler((extensions, delta) => {
|
|
87
102
|
delta.added.forEach(added => {
|
|
88
103
|
added.value.forEach(rawAdapter => {
|
|
89
|
-
if (!rawAdapter.type || (typeof rawAdapter.type !==
|
|
90
|
-
added.collector.error(( localize(
|
|
104
|
+
if (!rawAdapter.type || (typeof rawAdapter.type !== "string")) {
|
|
105
|
+
added.collector.error(( localize(7011, "Debugger 'type' can not be omitted and must be of type 'string'.")));
|
|
91
106
|
}
|
|
92
|
-
if (rawAdapter.type !==
|
|
107
|
+
if (rawAdapter.type !== "*") {
|
|
93
108
|
const existing = this.getDebugger(rawAdapter.type);
|
|
94
109
|
if (existing) {
|
|
95
110
|
existing.merge(rawAdapter, added.description);
|
|
96
|
-
}
|
|
97
|
-
else {
|
|
111
|
+
} else {
|
|
98
112
|
const dbg = this.instantiationService.createInstance(Debugger, this, rawAdapter, added.description);
|
|
99
113
|
dbg.when?.keys().forEach(key => this.debuggerWhenKeys.add(key));
|
|
100
114
|
this.debuggers.push(dbg);
|
|
@@ -104,7 +118,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
104
118
|
});
|
|
105
119
|
extensions.forEach(extension => {
|
|
106
120
|
extension.value.forEach(rawAdapter => {
|
|
107
|
-
if (rawAdapter.type ===
|
|
121
|
+
if (rawAdapter.type === "*") {
|
|
108
122
|
this.debuggers.forEach(dbg => dbg.merge(rawAdapter, extension.description));
|
|
109
123
|
}
|
|
110
124
|
});
|
|
@@ -129,51 +143,61 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
129
143
|
});
|
|
130
144
|
}
|
|
131
145
|
updateDebugAdapterSchema() {
|
|
132
|
-
const items = launchSchema.properties[
|
|
146
|
+
const items = launchSchema.properties["configurations"].items;
|
|
133
147
|
const taskSchema = TaskDefinitionRegistry.getJsonSchema();
|
|
134
148
|
const definitions = {
|
|
135
|
-
|
|
149
|
+
"common": {
|
|
136
150
|
properties: {
|
|
137
|
-
|
|
138
|
-
type:
|
|
151
|
+
"name": {
|
|
152
|
+
type: "string",
|
|
139
153
|
description: ( localize(
|
|
140
|
-
|
|
154
|
+
7012,
|
|
141
155
|
"Name of configuration; appears in the launch configuration dropdown menu."
|
|
142
156
|
)),
|
|
143
|
-
default:
|
|
157
|
+
default: "Launch"
|
|
144
158
|
},
|
|
145
|
-
|
|
146
|
-
type:
|
|
159
|
+
"debugServer": {
|
|
160
|
+
type: "number",
|
|
147
161
|
description: ( localize(
|
|
148
|
-
|
|
162
|
+
7013,
|
|
149
163
|
"For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode"
|
|
150
164
|
)),
|
|
151
165
|
default: 4711
|
|
152
166
|
},
|
|
153
|
-
|
|
167
|
+
"preLaunchTask": {
|
|
154
168
|
anyOf: [taskSchema, {
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
default:
|
|
158
|
-
defaultSnippets: [{
|
|
159
|
-
|
|
160
|
-
|
|
169
|
+
type: ["string"]
|
|
170
|
+
}],
|
|
171
|
+
default: "",
|
|
172
|
+
defaultSnippets: [{
|
|
173
|
+
body: {
|
|
174
|
+
task: "",
|
|
175
|
+
type: ""
|
|
176
|
+
}
|
|
177
|
+
}],
|
|
178
|
+
description: ( localize(7014, "Task to run before debug session starts.")),
|
|
179
|
+
examples: this.taskLabels
|
|
161
180
|
},
|
|
162
|
-
|
|
181
|
+
"postDebugTask": {
|
|
163
182
|
anyOf: [taskSchema, {
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
default:
|
|
167
|
-
defaultSnippets: [{
|
|
168
|
-
|
|
169
|
-
|
|
183
|
+
type: ["string"]
|
|
184
|
+
}],
|
|
185
|
+
default: "",
|
|
186
|
+
defaultSnippets: [{
|
|
187
|
+
body: {
|
|
188
|
+
task: "",
|
|
189
|
+
type: ""
|
|
190
|
+
}
|
|
191
|
+
}],
|
|
192
|
+
description: ( localize(7015, "Task to run after debug session ends.")),
|
|
193
|
+
examples: this.taskLabels
|
|
170
194
|
},
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
type:
|
|
195
|
+
"presentation": presentationSchema,
|
|
196
|
+
"internalConsoleOptions": INTERNAL_CONSOLE_OPTIONS_SCHEMA,
|
|
197
|
+
"suppressMultipleSessionWarning": {
|
|
198
|
+
type: "boolean",
|
|
175
199
|
description: ( localize(
|
|
176
|
-
|
|
200
|
+
7016,
|
|
177
201
|
"Disable the warning when trying to start the same debug configuration more than once."
|
|
178
202
|
)),
|
|
179
203
|
default: true
|
|
@@ -197,7 +221,9 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
197
221
|
jsonRegistry.registerSchema(launchSchemaId, launchSchema);
|
|
198
222
|
}
|
|
199
223
|
registerDebugAdapterFactory(debugTypes, debugAdapterLauncher) {
|
|
200
|
-
debugTypes.forEach(
|
|
224
|
+
debugTypes.forEach(
|
|
225
|
+
debugType => this.debugAdapterFactories.set(debugType, debugAdapterLauncher)
|
|
226
|
+
);
|
|
201
227
|
this.debuggersAvailable.set(this.hasEnabledDebuggers());
|
|
202
228
|
this._onDidRegisterDebugger.fire();
|
|
203
229
|
return {
|
|
@@ -273,10 +299,10 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
273
299
|
}
|
|
274
300
|
canSetBreakpointsIn(model) {
|
|
275
301
|
const languageId = model.getLanguageId();
|
|
276
|
-
if (!languageId || languageId ===
|
|
302
|
+
if (!languageId || languageId === "jsonc" || languageId === "log") {
|
|
277
303
|
return false;
|
|
278
304
|
}
|
|
279
|
-
if (this.configurationService.getValue(
|
|
305
|
+
if (this.configurationService.getValue("debug").allowBreakpointsEverywhere) {
|
|
280
306
|
return true;
|
|
281
307
|
}
|
|
282
308
|
return ( this.breakpointContributions.some(breakpoints => breakpoints.language === languageId && breakpoints.enabled));
|
|
@@ -289,9 +315,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
289
315
|
return adapter && adapter.enabled ? adapter : undefined;
|
|
290
316
|
}
|
|
291
317
|
someDebuggerInterestedInLanguage(languageId) {
|
|
292
|
-
return !!this.debuggers
|
|
293
|
-
.filter(d => d.enabled)
|
|
294
|
-
.find(a => a.interestedInLanguage(languageId));
|
|
318
|
+
return !!this.debuggers.filter(d => d.enabled).find(a => a.interestedInLanguage(languageId));
|
|
295
319
|
}
|
|
296
320
|
async guessDebugger(gettingConfigurations) {
|
|
297
321
|
const activeTextEditorControl = this.editorService.activeTextEditorControl;
|
|
@@ -304,37 +328,39 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
304
328
|
if (language) {
|
|
305
329
|
languageLabel = this.languageService.getLanguageName(language);
|
|
306
330
|
}
|
|
307
|
-
const adapters = this.debuggers
|
|
308
|
-
.filter(a => a.enabled)
|
|
309
|
-
.filter(a => language && a.interestedInLanguage(language));
|
|
331
|
+
const adapters = this.debuggers.filter(a => a.enabled).filter(a => language && a.interestedInLanguage(language));
|
|
310
332
|
if (adapters.length === 1) {
|
|
311
|
-
return {
|
|
333
|
+
return {
|
|
334
|
+
debugger: adapters[0]
|
|
335
|
+
};
|
|
312
336
|
}
|
|
313
337
|
if (adapters.length > 1) {
|
|
314
338
|
candidates = adapters;
|
|
315
339
|
}
|
|
316
340
|
}
|
|
317
341
|
if ((!languageLabel || gettingConfigurations || (model && this.canSetBreakpointsIn(model))) && candidates.length === 0) {
|
|
318
|
-
await this.activateDebuggers(
|
|
319
|
-
candidates = this.debuggers
|
|
320
|
-
.
|
|
321
|
-
|
|
342
|
+
await this.activateDebuggers("onDebugInitialConfigurations");
|
|
343
|
+
candidates = this.debuggers.filter(a => a.enabled).filter(
|
|
344
|
+
dbg => dbg.hasInitialConfiguration() || dbg.hasDynamicConfigurationProviders() || dbg.hasConfigurationProvider()
|
|
345
|
+
);
|
|
322
346
|
}
|
|
323
347
|
if (candidates.length === 0 && languageLabel) {
|
|
324
|
-
if (languageLabel.indexOf(
|
|
348
|
+
if (languageLabel.indexOf(" ") >= 0) {
|
|
325
349
|
languageLabel = `'${languageLabel}'`;
|
|
326
350
|
}
|
|
327
|
-
const {
|
|
351
|
+
const {
|
|
352
|
+
confirmed
|
|
353
|
+
} = await this.dialogService.confirm({
|
|
328
354
|
type: Severity.Warning,
|
|
329
355
|
message: ( localize(
|
|
330
|
-
|
|
356
|
+
7017,
|
|
331
357
|
"You don't have an extension for debugging {0}. Should we find a {0} extension in the Marketplace?",
|
|
332
358
|
languageLabel
|
|
333
359
|
)),
|
|
334
|
-
primaryButton: ( localize(
|
|
360
|
+
primaryButton: ( localize(7018, "&&Find {0} extension", languageLabel))
|
|
335
361
|
});
|
|
336
362
|
if (confirmed) {
|
|
337
|
-
await this.commandService.executeCommand(
|
|
363
|
+
await this.commandService.executeCommand("debug.installAdditionalDebuggers", languageLabel);
|
|
338
364
|
}
|
|
339
365
|
return undefined;
|
|
340
366
|
}
|
|
@@ -347,52 +373,80 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
347
373
|
const descriptor = d.getMainExtensionDescriptor();
|
|
348
374
|
if (descriptor.id && !!this.earlyActivatedExtensions?.has(descriptor.id)) {
|
|
349
375
|
suggestedCandidates.push(d);
|
|
350
|
-
}
|
|
351
|
-
else if (( this.usedDebugTypes.has(d.type))) {
|
|
376
|
+
} else if (( this.usedDebugTypes.has(d.type))) {
|
|
352
377
|
suggestedCandidates.push(d);
|
|
353
|
-
}
|
|
354
|
-
else {
|
|
378
|
+
} else {
|
|
355
379
|
otherCandidates.push(d);
|
|
356
380
|
}
|
|
357
381
|
});
|
|
358
382
|
const picks = [];
|
|
359
383
|
const dynamic = await this.delegate.configurationManager().getDynamicProviders();
|
|
360
384
|
if (suggestedCandidates.length > 0) {
|
|
361
|
-
picks.push({
|
|
385
|
+
picks.push({
|
|
386
|
+
type: "separator",
|
|
387
|
+
label: ( localize(7019, "Suggested"))
|
|
388
|
+
}, ...( suggestedCandidates.map(c => ({
|
|
389
|
+
label: c.label,
|
|
390
|
+
pick: () => ({
|
|
391
|
+
debugger: c
|
|
392
|
+
})
|
|
393
|
+
}))));
|
|
362
394
|
}
|
|
363
395
|
if (otherCandidates.length > 0) {
|
|
364
396
|
if (picks.length > 0) {
|
|
365
|
-
picks.push({
|
|
397
|
+
picks.push({
|
|
398
|
+
type: "separator",
|
|
399
|
+
label: ""
|
|
400
|
+
});
|
|
366
401
|
}
|
|
367
|
-
picks.push(...( otherCandidates.map(c => ({
|
|
402
|
+
picks.push(...( otherCandidates.map(c => ({
|
|
403
|
+
label: c.label,
|
|
404
|
+
pick: () => ({
|
|
405
|
+
debugger: c
|
|
406
|
+
})
|
|
407
|
+
}))));
|
|
368
408
|
}
|
|
369
409
|
if (dynamic.length) {
|
|
370
410
|
if (picks.length) {
|
|
371
|
-
picks.push({
|
|
411
|
+
picks.push({
|
|
412
|
+
type: "separator",
|
|
413
|
+
label: ""
|
|
414
|
+
});
|
|
372
415
|
}
|
|
373
416
|
for (const d of dynamic) {
|
|
374
417
|
picks.push({
|
|
375
|
-
label: ( localize(
|
|
418
|
+
label: ( localize(7020, "More {0} options...", d.label)),
|
|
376
419
|
pick: async () => {
|
|
377
420
|
const cfg = await d.pick();
|
|
378
421
|
if (!cfg) {
|
|
379
422
|
return undefined;
|
|
380
423
|
}
|
|
381
|
-
return cfg && {
|
|
382
|
-
|
|
424
|
+
return cfg && {
|
|
425
|
+
debugger: this.getDebugger(d.type),
|
|
426
|
+
withConfig: cfg
|
|
427
|
+
};
|
|
428
|
+
}
|
|
383
429
|
});
|
|
384
430
|
}
|
|
385
431
|
}
|
|
386
|
-
picks.push({
|
|
432
|
+
picks.push({
|
|
433
|
+
type: "separator",
|
|
434
|
+
label: ""
|
|
435
|
+
}, {
|
|
436
|
+
label: languageLabel ? ( localize(7021, "Install an extension for {0}...", languageLabel)) : ( localize(7022, "Install extension..."))
|
|
437
|
+
});
|
|
387
438
|
const contributed = this.menuService.getMenuActions(MenuId.DebugCreateConfiguration, this.contextKeyService);
|
|
388
439
|
for (const [, action] of contributed) {
|
|
389
440
|
for (const item of action) {
|
|
390
441
|
picks.push(item);
|
|
391
442
|
}
|
|
392
443
|
}
|
|
393
|
-
const placeHolder = ( localize(
|
|
394
|
-
return this.quickInputService.pick(picks, {
|
|
395
|
-
|
|
444
|
+
const placeHolder = ( localize(7023, "Select debugger"));
|
|
445
|
+
return this.quickInputService.pick(picks, {
|
|
446
|
+
activeItem: picks[0],
|
|
447
|
+
placeHolder
|
|
448
|
+
}).then(async picked => {
|
|
449
|
+
if (picked && "pick" in picked && typeof picked.pick === "function") {
|
|
396
450
|
return await picked.pick();
|
|
397
451
|
}
|
|
398
452
|
if (picked instanceof MenuItemAction) {
|
|
@@ -400,7 +454,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
400
454
|
return;
|
|
401
455
|
}
|
|
402
456
|
if (picked) {
|
|
403
|
-
this.commandService.executeCommand(
|
|
457
|
+
this.commandService.executeCommand("debug.installAdditionalDebuggers", languageLabel);
|
|
404
458
|
}
|
|
405
459
|
return undefined;
|
|
406
460
|
});
|
|
@@ -420,7 +474,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
420
474
|
this.initExtensionActivationsIfNeeded();
|
|
421
475
|
const promises = [
|
|
422
476
|
this.extensionService.activateByEvent(activationEvent),
|
|
423
|
-
this.extensionService.activateByEvent(
|
|
477
|
+
this.extensionService.activateByEvent("onDebug")
|
|
424
478
|
];
|
|
425
479
|
if (debugType) {
|
|
426
480
|
promises.push(this.extensionService.activateByEvent(`${activationEvent}:${debugType}`));
|
|
@@ -428,19 +482,6 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
428
482
|
await Promise.all(promises);
|
|
429
483
|
}
|
|
430
484
|
};
|
|
431
|
-
AdapterManager = ( __decorate([
|
|
432
|
-
( __param(1, IEditorService)),
|
|
433
|
-
( __param(2, IConfigurationService)),
|
|
434
|
-
( __param(3, IQuickInputService)),
|
|
435
|
-
( __param(4, IInstantiationService)),
|
|
436
|
-
( __param(5, ICommandService)),
|
|
437
|
-
( __param(6, IExtensionService)),
|
|
438
|
-
( __param(7, IContextKeyService)),
|
|
439
|
-
( __param(8, ILanguageService)),
|
|
440
|
-
( __param(9, IDialogService)),
|
|
441
|
-
( __param(10, ILifecycleService)),
|
|
442
|
-
( __param(11, ITaskService)),
|
|
443
|
-
( __param(12, IMenuService))
|
|
444
|
-
], AdapterManager));
|
|
485
|
+
AdapterManager = ( __decorate([( __param(1, IEditorService)), ( __param(2, IConfigurationService)), ( __param(3, IQuickInputService)), ( __param(4, IInstantiationService)), ( __param(5, ICommandService)), ( __param(6, IExtensionService)), ( __param(7, IContextKeyService)), ( __param(8, ILanguageService)), ( __param(9, IDialogService)), ( __param(10, ILifecycleService)), ( __param(11, ITaskService)), ( __param(12, IMenuService))], AdapterManager));
|
|
445
486
|
|
|
446
487
|
export { AdapterManager };
|