@codingame/monaco-vscode-debug-service-override 26.2.2 → 27.0.0

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 (37) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/platform/debug/common/extensionHostDebugIpc.d.ts +1 -1
  3. package/vscode/src/vs/platform/debug/common/extensionHostDebugIpc.js +6 -5
  4. package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +16 -16
  5. package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +104 -104
  6. package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +14 -14
  7. package/vscode/src/vs/workbench/contrib/debug/browser/debugChatIntegration.js +12 -12
  8. package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +9 -6
  9. package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +1 -1
  10. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +25 -25
  11. package/vscode/src/vs/workbench/contrib/debug/browser/debugMemory.js +2 -2
  12. package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +8 -8
  13. package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +25 -25
  14. package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +52 -42
  15. package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
  16. package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +15 -15
  17. package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +3 -3
  18. package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +5 -5
  19. package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +7 -7
  20. package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +14 -10
  21. package/vscode/src/vs/workbench/contrib/debug/browser/media/debugViewlet.css +1 -0
  22. package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.d.ts +1 -1
  23. package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +27 -27
  24. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.d.ts +2 -3
  25. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +107 -38
  26. package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +16 -16
  27. package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +4 -4
  28. package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +12 -12
  29. package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +6 -6
  30. package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +2 -2
  31. package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -3
  32. package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +43 -43
  33. package/vscode/src/vs/workbench/contrib/debug/common/debugViewModel.d.ts +2 -1
  34. package/vscode/src/vs/workbench/contrib/debug/common/debugViewModel.js +10 -8
  35. package/vscode/src/vs/workbench/contrib/debug/common/debugger.d.ts +1 -1
  36. package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +11 -11
  37. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
@@ -98,7 +98,7 @@ let Debugger = class Debugger {
98
98
  if (da) {
99
99
  return Promise.resolve(da);
100
100
  }
101
- throw ( new Error(( localize(7661, "Cannot find debug adapter for type '{0}'.", this.type))));
101
+ throw ( new Error(( localize(8297, "Cannot find debug adapter for type '{0}'.", this.type))));
102
102
  }
103
103
  async substituteVariables(folder, config) {
104
104
  const substitutedConfig = await this.adapterManager.substituteVariables(this.type, folder, config);
@@ -168,10 +168,10 @@ let Debugger = class Debugger {
168
168
  path: "1"
169
169
  }))) === "\r\n" ? "\r\n" : "\n";
170
170
  const configs = ( JSON.stringify(initialConfigurations, null, "\t").split("\n").map(line => "\t" + line)).join(eol).trim();
171
- const comment1 = ( localize(7662, "Use IntelliSense to learn about possible attributes."));
172
- const comment2 = ( localize(7663, "Hover to view descriptions of existing attributes."));
171
+ const comment1 = ( localize(8298, "Use IntelliSense to learn about possible attributes."));
172
+ const comment2 = ( localize(8299, "Hover to view descriptions of existing attributes."));
173
173
  const comment3 = ( localize(
174
- 7664,
174
+ 8300,
175
175
  "For more information, visit: {0}",
176
176
  "https://go.microsoft.com/fwlink/?linkid=830387"
177
177
  ));
@@ -223,22 +223,22 @@ let Debugger = class Debugger {
223
223
  properties["type"] = {
224
224
  enum: [this.type],
225
225
  enumDescriptions: [this.label],
226
- description: ( localize(7665, "Type of configuration.")),
226
+ description: ( localize(8301, "Type of configuration.")),
227
227
  pattern: "^(?!node2)",
228
228
  deprecationMessage: this.debuggerContribution.deprecated || (this.enabled ? undefined : debuggerDisabledMessage(this.type)),
229
229
  doNotSuggest: !!this.debuggerContribution.deprecated,
230
230
  errorMessage: ( localize(
231
- 7666,
231
+ 8302,
232
232
  "The debug type is not recognized. Make sure that you have a corresponding debug extension installed and that it is enabled."
233
233
  )),
234
234
  patternErrorMessage: ( localize(
235
- 7667,
235
+ 8303,
236
236
  "\"node2\" is no longer supported, use \"node\" instead and set the \"protocol\" attribute to \"inspector\"."
237
237
  ))
238
238
  };
239
239
  properties["request"] = {
240
240
  enum: [request],
241
- description: ( localize(7668, "Request type of configuration. Can be \"launch\" or \"attach\"."))
241
+ description: ( localize(8304, "Request type of configuration. Can be \"launch\" or \"attach\"."))
242
242
  };
243
243
  for (const prop in definitions["common"].properties) {
244
244
  properties[prop] = {
@@ -264,15 +264,15 @@ let Debugger = class Debugger {
264
264
  ...{
265
265
  windows: {
266
266
  $ref: `#/definitions/${platformSpecificDefinitionId}`,
267
- description: ( localize(7669, "Windows specific launch configuration attributes."))
267
+ description: ( localize(8305, "Windows specific launch configuration attributes."))
268
268
  },
269
269
  osx: {
270
270
  $ref: `#/definitions/${platformSpecificDefinitionId}`,
271
- description: ( localize(7670, "OS X specific launch configuration attributes."))
271
+ description: ( localize(8306, "OS X specific launch configuration attributes."))
272
272
  },
273
273
  linux: {
274
274
  $ref: `#/definitions/${platformSpecificDefinitionId}`,
275
- description: ( localize(7671, "Linux specific launch configuration attributes."))
275
+ description: ( localize(8307, "Linux specific launch configuration attributes."))
276
276
  }
277
277
  }
278
278
  };
@@ -8,7 +8,7 @@ import { INotebookKernelService } from '@codingame/monaco-vscode-api/vscode/vs/w
8
8
  import { INotebookService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
9
9
 
10
10
  const COPY_NOTEBOOK_VARIABLE_VALUE_ID = "workbench.debug.viewlet.action.copyWorkspaceVariableValue";
11
- const COPY_NOTEBOOK_VARIABLE_VALUE_LABEL = ( localize(9828, "Copy Value"));
11
+ const COPY_NOTEBOOK_VARIABLE_VALUE_LABEL = ( localize(10543, "Copy Value"));
12
12
  registerAction2(class extends Action2 {
13
13
  constructor() {
14
14
  super({
@@ -28,7 +28,7 @@ registerAction2(class extends Action2 {
28
28
  constructor() {
29
29
  super({
30
30
  id: "_executeNotebookVariableProvider",
31
- title: ( localize(9829, "Execute Notebook Variable Provider")),
31
+ title: ( localize(10544, "Execute Notebook Variable Provider")),
32
32
  f1: false
33
33
  });
34
34
  }