@codingame/monaco-vscode-debug-service-override 23.0.2 → 23.0.4

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.
Files changed (27) hide show
  1. package/package.json +15 -15
  2. package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +16 -16
  3. package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +112 -112
  4. package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +12 -12
  5. package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +5 -5
  6. package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +1 -1
  7. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +24 -24
  8. package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +9 -9
  9. package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +21 -21
  10. package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +43 -43
  11. package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
  12. package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +17 -17
  13. package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +3 -3
  14. package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +5 -5
  15. package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +7 -7
  16. package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +7 -7
  17. package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +5 -5
  18. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +8 -8
  19. package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +16 -16
  20. package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +4 -4
  21. package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +10 -10
  22. package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +6 -6
  23. package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +3 -3
  24. package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -3
  25. package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +44 -44
  26. package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +11 -11
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
@@ -87,7 +87,7 @@ let AdapterManager = class AdapterManager extends Disposable {
87
87
  delta.added.forEach(added => {
88
88
  added.value.forEach(rawAdapter => {
89
89
  if (!rawAdapter.type || (typeof rawAdapter.type !== 'string')) {
90
- added.collector.error(( localize(6522, "Debugger 'type' can not be omitted and must be of type 'string'.")));
90
+ added.collector.error(( localize(6526, "Debugger 'type' can not be omitted and must be of type 'string'.")));
91
91
  }
92
92
  if (rawAdapter.type !== '*') {
93
93
  const existing = this.getDebugger(rawAdapter.type);
@@ -137,7 +137,7 @@ let AdapterManager = class AdapterManager extends Disposable {
137
137
  'name': {
138
138
  type: 'string',
139
139
  description: ( localize(
140
- 6523,
140
+ 6527,
141
141
  "Name of configuration; appears in the launch configuration dropdown menu."
142
142
  )),
143
143
  default: 'Launch'
@@ -145,7 +145,7 @@ let AdapterManager = class AdapterManager extends Disposable {
145
145
  'debugServer': {
146
146
  type: 'number',
147
147
  description: ( localize(
148
- 6524,
148
+ 6528,
149
149
  "For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode"
150
150
  )),
151
151
  default: 4711
@@ -156,7 +156,7 @@ let AdapterManager = class AdapterManager extends Disposable {
156
156
  }],
157
157
  default: '',
158
158
  defaultSnippets: [{ body: { task: '', type: '' } }],
159
- description: ( localize(6525, "Task to run before debug session starts.")),
159
+ description: ( localize(6529, "Task to run before debug session starts.")),
160
160
  examples: this.taskLabels,
161
161
  },
162
162
  'postDebugTask': {
@@ -165,7 +165,7 @@ let AdapterManager = class AdapterManager extends Disposable {
165
165
  }],
166
166
  default: '',
167
167
  defaultSnippets: [{ body: { task: '', type: '' } }],
168
- description: ( localize(6526, "Task to run after debug session ends.")),
168
+ description: ( localize(6530, "Task to run after debug session ends.")),
169
169
  examples: this.taskLabels,
170
170
  },
171
171
  'presentation': presentationSchema,
@@ -173,7 +173,7 @@ let AdapterManager = class AdapterManager extends Disposable {
173
173
  'suppressMultipleSessionWarning': {
174
174
  type: 'boolean',
175
175
  description: ( localize(
176
- 6527,
176
+ 6531,
177
177
  "Disable the warning when trying to start the same debug configuration more than once."
178
178
  )),
179
179
  default: true
@@ -327,11 +327,11 @@ let AdapterManager = class AdapterManager extends Disposable {
327
327
  const { confirmed } = await this.dialogService.confirm({
328
328
  type: Severity.Warning,
329
329
  message: ( localize(
330
- 6528,
330
+ 6532,
331
331
  "You don't have an extension for debugging {0}. Should we find a {0} extension in the Marketplace?",
332
332
  languageLabel
333
333
  )),
334
- primaryButton: ( localize(6529, "&&Find {0} extension", languageLabel))
334
+ primaryButton: ( localize(6533, "&&Find {0} extension", languageLabel))
335
335
  });
336
336
  if (confirmed) {
337
337
  await this.commandService.executeCommand('debug.installAdditionalDebuggers', languageLabel);
@@ -358,7 +358,7 @@ let AdapterManager = class AdapterManager extends Disposable {
358
358
  const picks = [];
359
359
  const dynamic = await this.delegate.configurationManager().getDynamicProviders();
360
360
  if (suggestedCandidates.length > 0) {
361
- picks.push({ type: 'separator', label: ( localize(6530, "Suggested")) }, ...( suggestedCandidates.map(c => ({ label: c.label, pick: () => ({ debugger: c }) }))));
361
+ picks.push({ type: 'separator', label: ( localize(6534, "Suggested")) }, ...( suggestedCandidates.map(c => ({ label: c.label, pick: () => ({ debugger: c }) }))));
362
362
  }
363
363
  if (otherCandidates.length > 0) {
364
364
  if (picks.length > 0) {
@@ -372,7 +372,7 @@ let AdapterManager = class AdapterManager extends Disposable {
372
372
  }
373
373
  for (const d of dynamic) {
374
374
  picks.push({
375
- label: ( localize(6531, "More {0} options...", d.label)),
375
+ label: ( localize(6535, "More {0} options...", d.label)),
376
376
  pick: async () => {
377
377
  const cfg = await d.pick();
378
378
  if (!cfg) {
@@ -383,14 +383,14 @@ let AdapterManager = class AdapterManager extends Disposable {
383
383
  });
384
384
  }
385
385
  }
386
- picks.push({ type: 'separator', label: '' }, { label: languageLabel ? ( localize(6532, "Install an extension for {0}...", languageLabel)) : ( localize(6533, "Install extension...")) });
386
+ picks.push({ type: 'separator', label: '' }, { label: languageLabel ? ( localize(6536, "Install an extension for {0}...", languageLabel)) : ( localize(6537, "Install extension...")) });
387
387
  const contributed = this.menuService.getMenuActions(MenuId.DebugCreateConfiguration, this.contextKeyService);
388
388
  for (const [, action] of contributed) {
389
389
  for (const item of action) {
390
390
  picks.push(item);
391
391
  }
392
392
  }
393
- const placeHolder = ( localize(6534, "Select debugger"));
393
+ const placeHolder = ( localize(6538, "Select debugger"));
394
394
  return this.quickInputService.pick(picks, { activeItem: picks[0], placeHolder }).then(async (picked) => {
395
395
  if (picked && 'pick' in picked && typeof picked.pick === 'function') {
396
396
  return await picked.pick();
@@ -186,7 +186,7 @@ let ConfigurationManager = class ConfigurationManager {
186
186
  disposables.add(token);
187
187
  const input = disposables.add(this.quickInputService.createQuickPick());
188
188
  input.busy = true;
189
- input.placeholder = ( localize(6585, "Select Launch Configuration"));
189
+ input.placeholder = ( localize(6589, "Select Launch Configuration"));
190
190
  const chosenPromise = ( new Promise(resolve => {
191
191
  disposables.add(input.onDidAccept(() => resolve(input.activeItems[0])));
192
192
  disposables.add(input.onDidTriggerItemButton(async (context) => {
@@ -230,7 +230,7 @@ let ConfigurationManager = class ConfigurationManager {
230
230
  config,
231
231
  buttons: [{
232
232
  iconClass: ThemeIcon.asClassName(debugConfigure),
233
- tooltip: ( localize(6586, "Edit Debug Configuration in launch.json"))
233
+ tooltip: ( localize(6590, "Edit Debug Configuration in launch.json"))
234
234
  }],
235
235
  launch
236
236
  })))));
@@ -548,7 +548,7 @@ let Launch = class Launch extends AbstractLaunch {
548
548
  }
549
549
  catch (error) {
550
550
  throw ( new Error(( localize(
551
- 6587,
551
+ 6591,
552
552
  "Unable to create 'launch.json' file inside the '.vscode' folder ({0}).",
553
553
  error.message
554
554
  ))));
@@ -602,7 +602,7 @@ let WorkspaceLaunch = class WorkspaceLaunch extends AbstractLaunch {
602
602
  return this.contextService.getWorkspace().configuration;
603
603
  }
604
604
  get name() {
605
- return localize(6588, "workspace");
605
+ return localize(6592, "workspace");
606
606
  }
607
607
  getConfig() {
608
608
  return this.configurationService.inspect('launch').workspaceValue;
@@ -646,7 +646,7 @@ let UserLaunch = class UserLaunch extends AbstractLaunch {
646
646
  return this.preferencesService.userSettingsResource;
647
647
  }
648
648
  get name() {
649
- return localize(6589, "user settings");
649
+ return localize(6593, "user settings");
650
650
  }
651
651
  get hidden() {
652
652
  return true;
@@ -27,7 +27,7 @@ let DebugConsoleQuickAccess = class DebugConsoleQuickAccess extends PickerQuickA
27
27
  if (debugConsolePicks.length > 0) {
28
28
  debugConsolePicks.push({ type: 'separator' });
29
29
  }
30
- const createTerminalLabel = ( localize(6590, "Start a New Debug Session"));
30
+ const createTerminalLabel = ( localize(6594, "Start a New Debug Session"));
31
31
  debugConsolePicks.push({
32
32
  label: `$(plus) ${createTerminalLabel}`,
33
33
  ariaLabel: createTerminalLabel,
@@ -32,8 +32,8 @@ class ToggleBreakpointAction extends Action2 {
32
32
  super({
33
33
  id: TOGGLE_BREAKPOINT_ID,
34
34
  title: {
35
- ...( localize2(6591, "Debug: Toggle Breakpoint")),
36
- mnemonicTitle: ( localize(6592, "Toggle &&Breakpoint")),
35
+ ...( localize2(6595, "Debug: Toggle Breakpoint")),
36
+ mnemonicTitle: ( localize(6596, "Toggle &&Breakpoint")),
37
37
  },
38
38
  f1: true,
39
39
  precondition: CONTEXT_DEBUGGERS_AVAILABLE,
@@ -90,11 +90,11 @@ class ConditionalBreakpointAction extends EditorAction {
90
90
  constructor() {
91
91
  super({
92
92
  id: 'editor.debug.action.conditionalBreakpoint',
93
- label: ( localize2(6593, "Debug: Add Conditional Breakpoint...")),
93
+ label: ( localize2(6597, "Debug: Add Conditional Breakpoint...")),
94
94
  precondition: CONTEXT_DEBUGGERS_AVAILABLE,
95
95
  menuOpts: {
96
96
  menuId: MenuId.MenubarNewBreakpointMenu,
97
- title: ( localize(6594, "&&Conditional Breakpoint...")),
97
+ title: ( localize(6598, "&&Conditional Breakpoint...")),
98
98
  group: '1_breakpoints',
99
99
  order: 1,
100
100
  when: CONTEXT_DEBUGGERS_AVAILABLE
@@ -113,12 +113,12 @@ class LogPointAction extends EditorAction {
113
113
  constructor() {
114
114
  super({
115
115
  id: 'editor.debug.action.addLogPoint',
116
- label: ( localize2(6595, "Debug: Add Logpoint...")),
116
+ label: ( localize2(6599, "Debug: Add Logpoint...")),
117
117
  precondition: CONTEXT_DEBUGGERS_AVAILABLE,
118
118
  menuOpts: [
119
119
  {
120
120
  menuId: MenuId.MenubarNewBreakpointMenu,
121
- title: ( localize(6596, "&&Logpoint...")),
121
+ title: ( localize(6600, "&&Logpoint...")),
122
122
  group: '1_breakpoints',
123
123
  order: 4,
124
124
  when: CONTEXT_DEBUGGERS_AVAILABLE,
@@ -138,13 +138,13 @@ class TriggerByBreakpointAction extends EditorAction {
138
138
  constructor() {
139
139
  super({
140
140
  id: 'editor.debug.action.triggerByBreakpoint',
141
- label: ( localize(6597, "Debug: Add Triggered Breakpoint...")),
141
+ label: ( localize(6601, "Debug: Add Triggered Breakpoint...")),
142
142
  precondition: CONTEXT_DEBUGGERS_AVAILABLE,
143
143
  alias: 'Debug: Triggered Breakpoint...',
144
144
  menuOpts: [
145
145
  {
146
146
  menuId: MenuId.MenubarNewBreakpointMenu,
147
- title: ( localize(6598, "&&Triggered Breakpoint...")),
147
+ title: ( localize(6602, "&&Triggered Breakpoint...")),
148
148
  group: '1_breakpoints',
149
149
  order: 4,
150
150
  when: CONTEXT_DEBUGGERS_AVAILABLE,
@@ -164,12 +164,12 @@ class EditBreakpointAction extends EditorAction {
164
164
  constructor() {
165
165
  super({
166
166
  id: 'editor.debug.action.editBreakpoint',
167
- label: ( localize(6599, "Debug: Edit Breakpoint")),
167
+ label: ( localize(6603, "Debug: Edit Breakpoint")),
168
168
  alias: 'Debug: Edit Existing Breakpoint',
169
169
  precondition: CONTEXT_DEBUGGERS_AVAILABLE,
170
170
  menuOpts: {
171
171
  menuId: MenuId.MenubarNewBreakpointMenu,
172
- title: ( localize(6600, "&&Edit Breakpoint")),
172
+ title: ( localize(6604, "&&Edit Breakpoint")),
173
173
  group: '1_breakpoints',
174
174
  order: 1,
175
175
  when: CONTEXT_DEBUGGERS_AVAILABLE
@@ -204,8 +204,8 @@ class OpenDisassemblyViewAction extends Action2 {
204
204
  super({
205
205
  id: OpenDisassemblyViewAction.ID,
206
206
  title: {
207
- ...( localize2(6601, "Open Disassembly View")),
208
- mnemonicTitle: ( localize(6602, "&&DisassemblyView")),
207
+ ...( localize2(6605, "Open Disassembly View")),
208
+ mnemonicTitle: ( localize(6606, "&&DisassemblyView")),
209
209
  },
210
210
  precondition: CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE,
211
211
  menu: [
@@ -240,11 +240,11 @@ class ToggleDisassemblyViewSourceCodeAction extends Action2 {
240
240
  super({
241
241
  id: ToggleDisassemblyViewSourceCodeAction.ID,
242
242
  title: {
243
- ...( localize2(6603, "Toggle Source Code in Disassembly View")),
244
- mnemonicTitle: ( localize(6604, "&&ToggleSource")),
243
+ ...( localize2(6607, "Toggle Source Code in Disassembly View")),
244
+ mnemonicTitle: ( localize(6608, "&&ToggleSource")),
245
245
  },
246
246
  metadata: {
247
- description: ( localize2(6605, 'Shows or hides source code in disassembly'))
247
+ description: ( localize2(6609, 'Shows or hides source code in disassembly'))
248
248
  },
249
249
  f1: true,
250
250
  });
@@ -259,7 +259,7 @@ class ToggleDisassemblyViewSourceCodeAction extends Action2 {
259
259
  }
260
260
  class RunToCursorAction extends EditorAction {
261
261
  static { this.ID = 'editor.debug.action.runToCursor'; }
262
- static { this.LABEL = ( localize2(6606, "Run to Cursor")); }
262
+ static { this.LABEL = ( localize2(6610, "Run to Cursor")); }
263
263
  constructor() {
264
264
  super({
265
265
  id: RunToCursorAction.ID,
@@ -292,7 +292,7 @@ class RunToCursorAction extends EditorAction {
292
292
  }
293
293
  class SelectionToReplAction extends EditorAction {
294
294
  static { this.ID = 'editor.debug.action.selectionToRepl'; }
295
- static { this.LABEL = ( localize2(6607, "Evaluate in Debug Console")); }
295
+ static { this.LABEL = ( localize2(6611, "Evaluate in Debug Console")); }
296
296
  constructor() {
297
297
  super({
298
298
  id: SelectionToReplAction.ID,
@@ -327,7 +327,7 @@ class SelectionToReplAction extends EditorAction {
327
327
  }
328
328
  class SelectionToWatchExpressionsAction extends EditorAction {
329
329
  static { this.ID = 'editor.debug.action.selectionToWatch'; }
330
- static { this.LABEL = ( localize2(6608, "Add to Watch")); }
330
+ static { this.LABEL = ( localize2(6612, "Add to Watch")); }
331
331
  constructor() {
332
332
  super({
333
333
  id: SelectionToWatchExpressionsAction.ID,
@@ -372,7 +372,7 @@ class ShowDebugHoverAction extends EditorAction {
372
372
  constructor() {
373
373
  super({
374
374
  id: 'editor.debug.action.showDebugHover',
375
- label: ( localize2(6609, "Debug: Show Hover")),
375
+ label: ( localize2(6613, "Debug: Show Hover")),
376
376
  precondition: CONTEXT_IN_DEBUG_MODE,
377
377
  kbOpts: {
378
378
  kbExpr: EditorContextKeys.editorTextFocus,
@@ -389,10 +389,10 @@ class ShowDebugHoverAction extends EditorAction {
389
389
  return editor.getContribution(EDITOR_CONTRIBUTION_ID)?.showHover(position, true);
390
390
  }
391
391
  }
392
- const NO_TARGETS_MESSAGE = ( localize(6610, "Step targets are not available here"));
392
+ const NO_TARGETS_MESSAGE = ( localize(6614, "Step targets are not available here"));
393
393
  class StepIntoTargetsAction extends EditorAction {
394
394
  static { this.ID = 'editor.debug.action.stepIntoTargets'; }
395
- static { this.LABEL = ( localize(6611, "Step Into Target")); }
395
+ static { this.LABEL = ( localize(6615, "Step Into Target")); }
396
396
  constructor() {
397
397
  super({
398
398
  id: StepIntoTargetsAction.ID,
@@ -493,7 +493,7 @@ class GoToNextBreakpointAction extends GoToBreakpointAction {
493
493
  constructor() {
494
494
  super(true, {
495
495
  id: 'editor.debug.action.goToNextBreakpoint',
496
- label: ( localize2(6612, "Debug: Go to Next Breakpoint")),
496
+ label: ( localize2(6616, "Debug: Go to Next Breakpoint")),
497
497
  precondition: CONTEXT_DEBUGGERS_AVAILABLE
498
498
  });
499
499
  }
@@ -502,7 +502,7 @@ class GoToPreviousBreakpointAction extends GoToBreakpointAction {
502
502
  constructor() {
503
503
  super(false, {
504
504
  id: 'editor.debug.action.goToPreviousBreakpoint',
505
- label: ( localize2(6613, "Debug: Go to Previous Breakpoint")),
505
+ label: ( localize2(6617, "Debug: Go to Previous Breakpoint")),
506
506
  precondition: CONTEXT_DEBUGGERS_AVAILABLE
507
507
  });
508
508
  }
@@ -511,7 +511,7 @@ class CloseExceptionWidgetAction extends EditorAction {
511
511
  constructor() {
512
512
  super({
513
513
  id: 'editor.debug.action.closeExceptionWidget',
514
- label: ( localize2(6614, "Close Exception Widget")),
514
+ label: ( localize2(6618, "Close Exception Widget")),
515
515
  precondition: CONTEXT_EXCEPTION_WIDGET_VISIBLE,
516
516
  kbOpts: {
517
517
  primary: KeyCode.Escape,
@@ -16,7 +16,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
16
16
  constructor(debugService, contextService, commandService, notificationService) {
17
17
  super(DEBUG_QUICK_ACCESS_PREFIX, {
18
18
  noResultsPick: {
19
- label: ( localize(6677, "No matching launch configurations"))
19
+ label: ( localize(6681, "No matching launch configurations"))
20
20
  }
21
21
  });
22
22
  this.debugService = debugService;
@@ -42,7 +42,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
42
42
  highlights: { label: highlights },
43
43
  buttons: [{
44
44
  iconClass: ThemeIcon.asClassName(debugConfigure),
45
- tooltip: ( localize(6678, "Configure Launch Configuration"))
45
+ tooltip: ( localize(6682, "Configure Launch Configuration"))
46
46
  }],
47
47
  trigger: () => {
48
48
  config.launch.openConfigFile({ preserveFocus: false });
@@ -59,7 +59,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
59
59
  }
60
60
  };
61
61
  if (selectedConfiguration.name === config.name && selectedConfiguration.launch === config.launch) {
62
- const separator = { type: 'separator', label: ( localize(6679, 'Most Recent')) };
62
+ const separator = { type: 'separator', label: ( localize(6683, 'Most Recent')) };
63
63
  picks.unshift(separator, pick);
64
64
  continue;
65
65
  }
@@ -73,7 +73,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
73
73
  const dynamicProviders = await configManager.getDynamicProviders();
74
74
  if (dynamicProviders.length > 0) {
75
75
  picks.push({
76
- type: 'separator', label: ( localize(6680, "contributed"))
76
+ type: 'separator', label: ( localize(6684, "contributed"))
77
77
  });
78
78
  }
79
79
  configManager.getRecentDynamicConfigurations().forEach(({ name, type }) => {
@@ -84,7 +84,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
84
84
  highlights: { label: highlights },
85
85
  buttons: [{
86
86
  iconClass: ThemeIcon.asClassName(debugRemoveConfig),
87
- tooltip: ( localize(6681, "Remove Launch Configuration"))
87
+ tooltip: ( localize(6685, "Remove Launch Configuration"))
88
88
  }],
89
89
  trigger: () => {
90
90
  configManager.removeRecentDynamicConfigurations(name, type);
@@ -107,7 +107,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
107
107
  dynamicProviders.forEach(provider => {
108
108
  picks.push({
109
109
  label: `$(folder) ${provider.label}...`,
110
- ariaLabel: ( localize(6682, "{0} contributed configurations", provider.label)),
110
+ ariaLabel: ( localize(6686, "{0} contributed configurations", provider.label)),
111
111
  accept: async () => {
112
112
  const pick = await provider.pick();
113
113
  if (pick) {
@@ -119,12 +119,12 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
119
119
  });
120
120
  const visibleLaunches = configManager.getLaunches().filter(launch => !launch.hidden);
121
121
  if (visibleLaunches.length > 0) {
122
- picks.push({ type: 'separator', label: ( localize(6683, "configure")) });
122
+ picks.push({ type: 'separator', label: ( localize(6687, "configure")) });
123
123
  }
124
124
  for (const launch of visibleLaunches) {
125
125
  const label = this.contextService.getWorkbenchState() === WorkbenchState.WORKSPACE ?
126
- ( localize(6684, "Add Config ({0})...", launch.name)) :
127
- ( localize(6685, "Add Configuration..."));
126
+ ( localize(6688, "Add Config ({0})...", launch.name)) :
127
+ ( localize(6689, "Add Configuration..."));
128
128
  picks.push({
129
129
  label,
130
130
  description: this.contextService.getWorkbenchState() === WorkbenchState.WORKSPACE ? launch.name : '',
@@ -142,7 +142,7 @@ let DebugService = class DebugService {
142
142
  if (numberOfSessions > 0) {
143
143
  const viewContainer = this.viewDescriptorService.getViewContainerByViewId(CALLSTACK_VIEW_ID);
144
144
  if (viewContainer) {
145
- this.activity = this.activityService.showViewContainerActivity(viewContainer.id, { badge: ( new NumberBadge(numberOfSessions, n => n === 1 ? ( localize(6686, "1 active session")) : ( localize(6687, "{0} active sessions", n)))) });
145
+ this.activity = this.activityService.showViewContainerActivity(viewContainer.id, { badge: ( new NumberBadge(numberOfSessions, n => n === 1 ? ( localize(6690, "1 active session")) : ( localize(6691, "{0} active sessions", n)))) });
146
146
  }
147
147
  }
148
148
  }));
@@ -164,7 +164,7 @@ let DebugService = class DebugService {
164
164
  }
165
165
  }));
166
166
  this.disposables.add(extensionService.onWillStop(evt => {
167
- evt.veto(this.model.getSessions().length > 0, ( localize(6688, 'A debug session is still running that would terminate.')));
167
+ evt.veto(this.model.getSessions().length > 0, ( localize(6692, 'A debug session is still running that would terminate.')));
168
168
  }));
169
169
  this.initContextKeys(contextKeyService);
170
170
  }
@@ -273,8 +273,8 @@ let DebugService = class DebugService {
273
273
  }
274
274
  }
275
275
  async startDebugging(launch, configOrName, options, saveBeforeStart = !options?.parentSession) {
276
- const message = options && options.noDebug ? ( localize(6689, "Running executes build tasks and program code from your workspace.")) : ( localize(
277
- 6690,
276
+ const message = options && options.noDebug ? ( localize(6693, "Running executes build tasks and program code from your workspace.")) : ( localize(
277
+ 6694,
278
278
  "Debugging executes build tasks and program code from your workspace."
279
279
  ));
280
280
  const trust = await this.workspaceTrustRequestService.requestWorkspaceTrust({ message });
@@ -305,7 +305,7 @@ let DebugService = class DebugService {
305
305
  if (compound) {
306
306
  if (!compound.configurations) {
307
307
  throw ( new Error(( localize(
308
- 6691,
308
+ 6695,
309
309
  "Compound must have \"configurations\" attribute set in order to start multiple configurations."
310
310
  ))));
311
311
  }
@@ -334,9 +334,9 @@ let DebugService = class DebugService {
334
334
  launchForName = launch;
335
335
  }
336
336
  else {
337
- throw ( new Error(launchesContainingName.length === 0 ? ( localize(6692, "Could not find launch configuration '{0}' in the workspace.", name))
337
+ throw ( new Error(launchesContainingName.length === 0 ? ( localize(6696, "Could not find launch configuration '{0}' in the workspace.", name))
338
338
  : ( localize(
339
- 6693,
339
+ 6697,
340
340
  "There are multiple launch configurations '{0}' in the workspace. Use folder name to qualify the configuration.",
341
341
  name
342
342
  ))));
@@ -349,7 +349,7 @@ let DebugService = class DebugService {
349
349
  }
350
350
  else {
351
351
  throw ( new Error(( localize(
352
- 6694,
352
+ 6698,
353
353
  "Can not find folder with name '{0}' for configuration '{1}' in compound '{2}'.",
354
354
  configData.folder,
355
355
  configData.name,
@@ -365,11 +365,11 @@ let DebugService = class DebugService {
365
365
  }
366
366
  if (configOrName && !config) {
367
367
  const message = !!launch ? ( localize(
368
- 6695,
368
+ 6699,
369
369
  "Configuration '{0}' is missing in 'launch.json'.",
370
370
  typeof configOrName === 'string' ? configOrName : configOrName.name
371
371
  )) :
372
- ( localize(6696, "'launch.json' does not exist for passed workspace folder."));
372
+ ( localize(6700, "'launch.json' does not exist for passed workspace folder."));
373
373
  throw ( new Error(message));
374
374
  }
375
375
  const result = await this.createSession(launch, config, options);
@@ -473,25 +473,25 @@ let DebugService = class DebugService {
473
473
  let message;
474
474
  if (configByProviders.request !== 'attach' && configByProviders.request !== 'launch') {
475
475
  message = configByProviders.request ? ( localize(
476
- 6697,
476
+ 6701,
477
477
  "Attribute '{0}' has an unsupported value '{1}' in the chosen debug configuration.",
478
478
  'request',
479
479
  configByProviders.request
480
480
  ))
481
481
  : ( localize(
482
- 6698,
482
+ 6702,
483
483
  "Attribute '{0}' is missing from the chosen debug configuration.",
484
484
  'request'
485
485
  ));
486
486
  }
487
487
  else {
488
- message = resolvedConfig.type ? ( localize(6699, "Configured debug type '{0}' is not supported.", resolvedConfig.type)) :
489
- ( localize(6700, "Missing property 'type' for the chosen launch configuration."));
488
+ message = resolvedConfig.type ? ( localize(6703, "Configured debug type '{0}' is not supported.", resolvedConfig.type)) :
489
+ ( localize(6704, "Missing property 'type' for the chosen launch configuration."));
490
490
  }
491
491
  const actionList = [];
492
492
  actionList.push(toAction({
493
493
  id: 'installAdditionalDebuggers',
494
- label: ( localize(6701, "Install {0} Extension", resolvedConfig.type)),
494
+ label: ( localize(6705, "Install {0} Extension", resolvedConfig.type)),
495
495
  enabled: true,
496
496
  run: async () => this.commandService.executeCommand('debug.installAdditionalDebuggers', resolvedConfig?.type)
497
497
  }));
@@ -515,7 +515,7 @@ let DebugService = class DebugService {
515
515
  }
516
516
  else if (this.contextService.getWorkbenchState() === WorkbenchState.EMPTY) {
517
517
  await this.showError(( localize(
518
- 6702,
518
+ 6706,
519
519
  "The active file can not be debugged. Make sure it is saved and that you have a debug extension installed for that file type."
520
520
  )));
521
521
  }
@@ -583,7 +583,7 @@ let DebugService = class DebugService {
583
583
  async confirmConcurrentSession(sessionLabel) {
584
584
  const result = await this.dialogService.confirm({
585
585
  message: ( localize(
586
- 6703,
586
+ 6707,
587
587
  "'{0}' is already running. Do you want to start another instance?",
588
588
  sessionLabel
589
589
  ))
@@ -634,7 +634,7 @@ let DebugService = class DebugService {
634
634
  if (adapterExitEvent) {
635
635
  if (adapterExitEvent.error) {
636
636
  this.notificationService.error(( localize(
637
- 6704,
637
+ 6708,
638
638
  "Debug adapter process has terminated unexpectedly ({0})",
639
639
  adapterExitEvent.error.message || ( adapterExitEvent.error.toString())
640
640
  )));
@@ -874,7 +874,7 @@ let DebugService = class DebugService {
874
874
  if (lineNumber >= 1 && lineNumber <= model.getLineCount()) {
875
875
  const lineContent = control.getModel().getLineContent(lineNumber);
876
876
  alert(( localize(
877
- 6705,
877
+ 6709,
878
878
  "{0}, debugging paused {1}, {2}:{3}",
879
879
  lineContent,
880
880
  thread && thread.stoppedDetails ? `, reason ${thread.stoppedDetails.reason}` : '',
@@ -947,7 +947,7 @@ let DebugService = class DebugService {
947
947
  async addBreakpoints(uri, rawBreakpoints, ariaAnnounce = true) {
948
948
  const breakpoints = this.model.addBreakpoints(uri, rawBreakpoints);
949
949
  if (ariaAnnounce) {
950
- breakpoints.forEach(bp => status(( localize(6706, "Added breakpoint, line {0}, file {1}", bp.lineNumber, uri.fsPath))));
950
+ breakpoints.forEach(bp => status(( localize(6710, "Added breakpoint, line {0}, file {1}", bp.lineNumber, uri.fsPath))));
951
951
  }
952
952
  this.debugStorage.storeBreakpoints(this.model);
953
953
  await this.sendBreakpoints(uri);
@@ -969,7 +969,7 @@ let DebugService = class DebugService {
969
969
  const breakpoints = this.model.getBreakpoints();
970
970
  const toRemove = breakpoints.filter(bp => !id || bp.getId() === id);
971
971
  toRemove.forEach(bp => status(( localize(
972
- 6707,
972
+ 6711,
973
973
  "Removed breakpoint, line {0}, file {1}",
974
974
  bp.lineNumber,
975
975
  bp.uri.fsPath