@codingame/monaco-vscode-debug-service-override 8.0.3 → 8.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 (22) hide show
  1. package/package.json +2 -2
  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 +107 -107
  4. package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +1 -1
  5. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +24 -24
  6. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
  7. package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +8 -8
  8. package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
  9. package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +3 -3
  10. package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +5 -5
  11. package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +7 -7
  12. package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +7 -7
  13. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +16 -16
  14. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +11 -11
  15. package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +14 -14
  16. package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +4 -4
  17. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
  18. package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +9 -9
  19. package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +7 -7
  20. package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +3 -3
  21. package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -3
  22. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
@@ -57,68 +57,68 @@ let RunAndDebugAccessibilityHelpProvider = class RunAndDebugAccessibilityHelpPro
57
57
  provideContent() {
58
58
  return [
59
59
  ( localize(
60
- 6127,
60
+ 6126,
61
61
  "The Show Run and Debug view command{0} will open the current view.",
62
62
  '<keybinding:workbench.view.debug>'
63
63
  )),
64
64
  ( localize(
65
- 6128,
65
+ 6127,
66
66
  "The Debug: Start Debugging command{0} will start a debug session.",
67
67
  '<keybinding:workbench.action.debug.start>'
68
68
  )),
69
69
  AccessibilityHelpNLS.setBreakpoint,
70
- ( localize(6129, "Once debugging, the following commands will be available:")),
70
+ ( localize(6128, "Once debugging, the following commands will be available:")),
71
71
  ( localize(
72
- 6130,
72
+ 6129,
73
73
  "- Debug: Continue command{0} will continue execution until the next breakpoint.",
74
74
  '<keybinding:workbench.action.debug.continue>'
75
75
  )),
76
76
  ( localize(
77
- 6131,
77
+ 6130,
78
78
  "- Debug: Step Into command{0} will step into the next function call.",
79
79
  '<keybinding:workbench.action.debug.stepInto>'
80
80
  )),
81
81
  ( localize(
82
- 6132,
82
+ 6131,
83
83
  "- Debug: Step Over command{0} will step over the current function call.",
84
84
  '<keybinding:workbench.action.debug.stepOver>'
85
85
  )),
86
86
  ( localize(
87
- 6133,
87
+ 6132,
88
88
  "- Debug: Step Out command{0} will step out of the current function call.",
89
89
  '<keybinding:workbench.action.debug.stepOut>'
90
90
  )),
91
91
  ( localize(
92
- 6134,
92
+ 6133,
93
93
  'The debug viewlet is comprised of several views that can be focused with the following commands or navigated to via tab then arrow keys:'
94
94
  )),
95
95
  ( localize(
96
- 6135,
96
+ 6134,
97
97
  "- Debug: Focus Breakpoints View command{0} will focus the breakpoints view.",
98
98
  '<keybinding:workbench.debug.action.focusBreakpointsView>'
99
99
  )),
100
100
  ( localize(
101
- 6136,
101
+ 6135,
102
102
  "- Debug: Focus Call Stack View command{0} will focus the call stack view.",
103
103
  '<keybinding:workbench.debug.action.focusCallStackView>'
104
104
  )),
105
105
  ( localize(
106
- 6137,
106
+ 6136,
107
107
  "- Debug: Focus Variables View command{0} will focus the variables view.",
108
108
  '<keybinding:workbench.debug.action.focusVariablesView>'
109
109
  )),
110
110
  ( localize(
111
- 6138,
111
+ 6137,
112
112
  "- Debug: Focus Watch View command{0} will focus the watch view.",
113
113
  '<keybinding:workbench.debug.action.focusWatchView>'
114
114
  )),
115
115
  ( localize(
116
- 6139,
116
+ 6138,
117
117
  "The debug console is a Read-Eval-Print-Loop that allows you to evaluate expressions and run commands and can be focused with{0}.",
118
118
  '<keybinding:workbench.panel.repl.view.focus>'
119
119
  )),
120
120
  ( localize(
121
- 6140,
121
+ 6139,
122
122
  "The setting {0} controls whether watch variable changes are announced.",
123
123
  'accessibility.debugWatchVariableAnnouncements'
124
124
  )),
@@ -26,7 +26,7 @@ const STATUS_BAR_DEBUGGING_BACKGROUND = registerColor('statusBar.debuggingBackgr
26
26
  hcDark: '#BA592C',
27
27
  hcLight: '#B5200D'
28
28
  }, ( localize(
29
- 6080,
29
+ 6063,
30
30
  "Status bar background color when a program is being debugged. The status bar is shown in the bottom of the window"
31
31
  )));
32
32
  const STATUS_BAR_DEBUGGING_FOREGROUND = registerColor('statusBar.debuggingForeground', {
@@ -35,14 +35,14 @@ const STATUS_BAR_DEBUGGING_FOREGROUND = registerColor('statusBar.debuggingForegr
35
35
  hcDark: STATUS_BAR_FOREGROUND,
36
36
  hcLight: '#FFFFFF'
37
37
  }, ( localize(
38
- 6081,
38
+ 6064,
39
39
  "Status bar foreground color when a program is being debugged. The status bar is shown in the bottom of the window"
40
40
  )));
41
41
  const STATUS_BAR_DEBUGGING_BORDER = registerColor('statusBar.debuggingBorder', STATUS_BAR_BORDER, ( localize(
42
- 6082,
42
+ 6065,
43
43
  "Status bar border color separating to the sidebar and editor when a program is being debugged. The status bar is shown in the bottom of the window"
44
44
  )));
45
- const COMMAND_CENTER_DEBUGGING_BACKGROUND = registerColor('commandCenter.debuggingBackground', ( (transparent(STATUS_BAR_DEBUGGING_BACKGROUND, 0.258))), ( localize(6083, "Command center background color when a program is being debugged")), true);
45
+ const COMMAND_CENTER_DEBUGGING_BACKGROUND = registerColor('commandCenter.debuggingBackground', ( (transparent(STATUS_BAR_DEBUGGING_BACKGROUND, 0.258))), ( localize(6066, "Command center background color when a program is being debugged")), true);
46
46
  let StatusBarColorProvider = class StatusBarColorProvider {
47
47
  set enabled(enabled) {
48
48
  if (enabled === !!this.disposable) {
@@ -365,7 +365,7 @@ let VisualizedVariableRenderer = class VisualizedVariableRenderer extends Abstra
365
365
  const viz = expression;
366
366
  return {
367
367
  initialValue: expression.value,
368
- ariaLabel: ( localize(6084, "Type new variable value")),
368
+ ariaLabel: ( localize(6067, "Type new variable value")),
369
369
  validationOptions: {
370
370
  validation: () => viz.errorMessage ? ({ content: viz.errorMessage }) : null
371
371
  },
@@ -388,7 +388,7 @@ let VisualizedVariableRenderer = class VisualizedVariableRenderer extends Abstra
388
388
  const primary = [];
389
389
  createAndFillInContextMenuActions(menu, { primary, secondary: [] }, 'inline');
390
390
  if (viz.original) {
391
- const action = ( (new Action('debugViz', ( localize(6085, 'Remove Visualizer')), ThemeIcon.asClassName(Codicon.eye), true, () => this.debugService.getViewModel().setVisualizedExpression(viz.original, undefined))));
391
+ const action = ( (new Action('debugViz', ( localize(6068, 'Remove Visualizer')), ThemeIcon.asClassName(Codicon.eye), true, () => this.debugService.getViewModel().setVisualizedExpression(viz.original, undefined))));
392
392
  action.checked = true;
393
393
  primary.push(action);
394
394
  actionBar.domNode.style.display = 'initial';
@@ -438,7 +438,7 @@ let VariablesRenderer = class VariablesRenderer extends AbstractExpressionsRende
438
438
  const variable = expression;
439
439
  return {
440
440
  initialValue: expression.value,
441
- ariaLabel: ( localize(6084, "Type new variable value")),
441
+ ariaLabel: ( localize(6067, "Type new variable value")),
442
442
  validationOptions: {
443
443
  validation: () => variable.errorMessage ? ({ content: variable.errorMessage }) : null
444
444
  },
@@ -482,7 +482,7 @@ let VariablesRenderer = class VariablesRenderer extends AbstractExpressionsRende
482
482
  actionBar.push(actions[0], { icon: true, label: false });
483
483
  }
484
484
  else {
485
- actionBar.push(( (new Action('debugViz', ( localize(6086, 'Visualize Variable...')), ThemeIcon.asClassName(Codicon.eye), undefined, () => this.pickVisualizer(actions, originalExpression, data)))), { icon: true, label: false });
485
+ actionBar.push(( (new Action('debugViz', ( localize(6069, 'Visualize Variable...')), ThemeIcon.asClassName(Codicon.eye), undefined, () => this.pickVisualizer(actions, originalExpression, data)))), { icon: true, label: false });
486
486
  }
487
487
  });
488
488
  }
@@ -523,14 +523,14 @@ VariablesRenderer = VariablesRenderer_1 = ( (__decorate([
523
523
  ], VariablesRenderer)));
524
524
  class VariablesAccessibilityProvider {
525
525
  getWidgetAriaLabel() {
526
- return ( localize(6087, "Debug Variables"));
526
+ return ( localize(6070, "Debug Variables"));
527
527
  }
528
528
  getAriaLabel(element) {
529
529
  if (element instanceof Scope) {
530
- return ( localize(6088, "Scope {0}", element.name));
530
+ return ( localize(6071, "Scope {0}", element.name));
531
531
  }
532
532
  if (element instanceof Variable) {
533
- return ( localize(6089, "{0}, value {1}", element.name, element.value));
533
+ return ( localize(6072, "{0}, value {1}", element.name, element.value));
534
534
  }
535
535
  return null;
536
536
  }
@@ -633,7 +633,7 @@ CommandsRegistry.registerCommand({
633
633
  async function tryInstallHexEditor(extensionsWorkbenchService, notificationService) {
634
634
  try {
635
635
  await extensionsWorkbenchService.install(HEX_EDITOR_EXTENSION_ID, {
636
- justification: ( localize(6090, "Inspecting binary data requires this extension.")),
636
+ justification: ( localize(6073, "Inspecting binary data requires this extension.")),
637
637
  enable: true
638
638
  }, ProgressLocation.Notification);
639
639
  return true;
@@ -698,7 +698,7 @@ registerAction2(class extends ViewAction {
698
698
  super({
699
699
  id: 'variables.collapse',
700
700
  viewId: VARIABLES_VIEW_ID,
701
- title: ( localize(6091, "Collapse All")),
701
+ title: ( localize(6074, "Collapse All")),
702
702
  f1: false,
703
703
  icon: Codicon.collapseAll,
704
704
  menu: {
@@ -281,7 +281,7 @@ let WatchExpressionsRenderer = class WatchExpressionsRenderer extends AbstractEx
281
281
  if (settingValue) {
282
282
  return {
283
283
  initialValue: expression.value,
284
- ariaLabel: ( localize(6092, "Type new value")),
284
+ ariaLabel: ( localize(6091, "Type new value")),
285
285
  onFinish: async (value, success) => {
286
286
  if (success && value) {
287
287
  const focusedFrame = this.debugService.getViewModel().focusedStackFrame;
@@ -295,8 +295,8 @@ let WatchExpressionsRenderer = class WatchExpressionsRenderer extends AbstractEx
295
295
  }
296
296
  return {
297
297
  initialValue: expression.name ? expression.name : '',
298
- ariaLabel: ( localize(6093, "Type watch expression")),
299
- placeholder: ( localize(6094, "Expression to watch")),
298
+ ariaLabel: ( localize(6092, "Type watch expression")),
299
+ placeholder: ( localize(6093, "Expression to watch")),
300
300
  onFinish: (value, success) => {
301
301
  if (success && value) {
302
302
  this.debugService.renameWatchExpression(expression.getId(), value);
@@ -337,13 +337,13 @@ function getContextForWatchExpressionMenu(parentContext, expression) {
337
337
  }
338
338
  class WatchExpressionsAccessibilityProvider {
339
339
  getWidgetAriaLabel() {
340
- return ( localize(6095, "Debug Watch Expressions"));
340
+ return ( localize(6094, "Debug Watch Expressions"));
341
341
  }
342
342
  getAriaLabel(element) {
343
343
  if (element instanceof Expression) {
344
- return ( localize(6096, "{0}, value {1}", element.name, element.value));
344
+ return ( localize(6095, "{0}, value {1}", element.name, element.value));
345
345
  }
346
- return ( localize(6097, "{0}, value {1}", element.name, element.value));
346
+ return ( localize(6096, "{0}, value {1}", element.name, element.value));
347
347
  }
348
348
  }
349
349
  class WatchExpressionsDragAndDrop {
@@ -424,7 +424,7 @@ registerAction2(class Collapse extends ViewAction {
424
424
  super({
425
425
  id: 'watch.collapse',
426
426
  viewId: WATCH_VIEW_ID,
427
- title: ( localize(6098, "Collapse All")),
427
+ title: ( localize(6097, "Collapse All")),
428
428
  f1: false,
429
429
  icon: Codicon.collapseAll,
430
430
  precondition: CONTEXT_WATCH_EXPRESSIONS_EXIST,
@@ -441,7 +441,7 @@ registerAction2(class Collapse extends ViewAction {
441
441
  }
442
442
  });
443
443
  const ADD_WATCH_ID = 'workbench.debug.viewlet.action.addWatchExpression';
444
- const ADD_WATCH_LABEL = ( localize(6099, "Add Expression"));
444
+ const ADD_WATCH_LABEL = ( localize(6098, "Add Expression"));
445
445
  registerAction2(class AddWatchExpressionAction extends Action2 {
446
446
  constructor() {
447
447
  super({
@@ -462,7 +462,7 @@ registerAction2(class AddWatchExpressionAction extends Action2 {
462
462
  }
463
463
  });
464
464
  const REMOVE_WATCH_EXPRESSIONS_COMMAND_ID = 'workbench.debug.viewlet.action.removeAllWatchExpressions';
465
- const REMOVE_WATCH_EXPRESSIONS_LABEL = ( localize(6100, "Remove All Expressions"));
465
+ const REMOVE_WATCH_EXPRESSIONS_LABEL = ( localize(6099, "Remove All Expressions"));
466
466
  registerAction2(class RemoveAllWatchExpressionsAction extends Action2 {
467
467
  constructor() {
468
468
  super({
@@ -31,7 +31,7 @@ const CONTEXT_DEBUG_START_LANGUAGE = ( (new RawContextKey(debugStartLanguageKey,
31
31
  const CONTEXT_DEBUGGER_INTERESTED_IN_ACTIVE_EDITOR = ( (new RawContextKey('debuggerInterestedInActiveEditor', false)));
32
32
  let WelcomeView = class WelcomeView extends ViewPane {
33
33
  static { this.ID = 'workbench.debug.welcome'; }
34
- static { this.LABEL = ( localize2(6101, "Run")); }
34
+ static { this.LABEL = ( localize2(6100, "Run")); }
35
35
  constructor(options, themeService, keybindingService, contextMenuService, configurationService, contextKeyService, debugService, editorService, instantiationService, viewDescriptorService, openerService, storageSevice, telemetryService, hoverService) {
36
36
  super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, telemetryService, hoverService);
37
37
  this.debugService = debugService;
@@ -102,7 +102,7 @@ WelcomeView = ( (__decorate([
102
102
  const viewsRegistry = ( (Registry.as(Extensions.ViewsRegistry)));
103
103
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
104
104
  content: ( localize(
105
- 6102,
105
+ 6101,
106
106
  "[Open a file](command:{0}) which can be debugged or run.",
107
107
  (isMacintosh && !isWeb) ? OpenFileFolderAction.ID : OpenFileAction.ID
108
108
  )),
@@ -114,20 +114,20 @@ viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
114
114
  });
115
115
  let debugKeybindingLabel = '';
116
116
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
117
- content: `[${( localize(6103, "Run and Debug"))}${debugKeybindingLabel}](command:${DEBUG_START_COMMAND_ID})`,
117
+ content: `[${( localize(6102, "Run and Debug"))}${debugKeybindingLabel}](command:${DEBUG_START_COMMAND_ID})`,
118
118
  when: CONTEXT_DEBUGGERS_AVAILABLE,
119
119
  group: ViewContentGroups.Debug,
120
120
  order: 1
121
121
  });
122
122
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
123
- content: `[${( localize(6104, "Show all automatic debug configurations"))}](command:${SELECT_AND_START_ID}).`,
123
+ content: `[${( localize(6103, "Show all automatic debug configurations"))}](command:${SELECT_AND_START_ID}).`,
124
124
  when: CONTEXT_DEBUGGERS_AVAILABLE,
125
125
  group: ViewContentGroups.Debug,
126
126
  order: 10
127
127
  });
128
128
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
129
129
  content: ( localize(
130
- 6105,
130
+ 6104,
131
131
  "To customize Run and Debug [create a launch.json file](command:{0}).",
132
132
  DEBUG_CONFIGURE_COMMAND_ID
133
133
  )),
@@ -139,7 +139,7 @@ viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
139
139
  });
140
140
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
141
141
  content: ( localize(
142
- 6106,
142
+ 6105,
143
143
  "To customize Run and Debug, [open a folder](command:{0}) and create a launch.json file.",
144
144
  (isMacintosh && !isWeb) ? OpenFileFolderAction.ID : OpenFolderAction.ID
145
145
  )),
@@ -151,7 +151,7 @@ viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
151
151
  });
152
152
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
153
153
  content: ( localize(
154
- 6107,
154
+ 6106,
155
155
  "All debug extensions are disabled. Enable a debug extension or install a new one from the Marketplace."
156
156
  )),
157
157
  when: ( (CONTEXT_DEBUG_EXTENSION_AVAILABLE.toNegated())),
@@ -49,14 +49,14 @@ let DebugContentProvider = class DebugContentProvider {
49
49
  session = this.debugService.getViewModel().focusedSession;
50
50
  }
51
51
  if (!session) {
52
- return Promise.reject(( (new ErrorNoTelemetry(( localize(6108, "Unable to resolve the resource without a debug session"))))));
52
+ return Promise.reject(( (new ErrorNoTelemetry(( localize(6107, "Unable to resolve the resource without a debug session"))))));
53
53
  }
54
54
  const createErrModel = (errMsg) => {
55
55
  this.debugService.sourceIsNotAvailable(resource);
56
56
  const languageSelection = this.languageService.createById(PLAINTEXT_LANGUAGE_ID);
57
57
  const message = errMsg
58
- ? ( localize(6109, "Could not load source '{0}': {1}.", resource.path, errMsg))
59
- : ( localize(6110, "Could not load source '{0}'.", resource.path));
58
+ ? ( localize(6108, "Could not load source '{0}': {1}.", resource.path, errMsg))
59
+ : ( localize(6109, "Could not load source '{0}'.", resource.path));
60
60
  return this.modelService.createModel(message, languageSelection, resource);
61
61
  };
62
62
  return session.loadSource(resource).then(response => {
@@ -30,20 +30,20 @@ let DebugLifecycle = class DebugLifecycle {
30
30
  let message;
31
31
  if (numSessions === 1) {
32
32
  message = ( localize(
33
- 6111,
33
+ 6110,
34
34
  "There is an active debug session, are you sure you want to stop it?"
35
35
  ));
36
36
  }
37
37
  else {
38
38
  message = ( localize(
39
- 6112,
39
+ 6111,
40
40
  "There are active debug sessions, are you sure you want to stop them?"
41
41
  ));
42
42
  }
43
43
  const res = await this.dialogService.confirm({
44
44
  message,
45
45
  type: 'warning',
46
- primaryButton: ( localize(6113, "&&Stop Debugging"))
46
+ primaryButton: ( localize(6112, "&&Stop Debugging"))
47
47
  });
48
48
  return !res.confirmed;
49
49
  }
@@ -7,7 +7,7 @@ import { INotebookKernelService } from 'vscode/vscode/vs/workbench/contrib/noteb
7
7
  import { INotebookService } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
8
8
 
9
9
  const COPY_NOTEBOOK_VARIABLE_VALUE_ID = 'workbench.debug.viewlet.action.copyWorkspaceVariableValue';
10
- const COPY_NOTEBOOK_VARIABLE_VALUE_LABEL = ( localize(6114, "Copy Value"));
10
+ const COPY_NOTEBOOK_VARIABLE_VALUE_LABEL = ( localize(6113, "Copy Value"));
11
11
  registerAction2(class extends Action2 {
12
12
  constructor() {
13
13
  super({
@@ -27,7 +27,7 @@ registerAction2(class extends Action2 {
27
27
  constructor() {
28
28
  super({
29
29
  id: '_executeNotebookVariableProvider',
30
- title: ( localize(6115, "Execute Notebook Variable Provider")),
30
+ title: ( localize(6114, "Execute Notebook Variable Provider")),
31
31
  f1: false,
32
32
  });
33
33
  }