@codingame/monaco-vscode-debug-service-override 1.83.2 → 1.83.3

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 (48) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +2 -2
  3. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +90 -68
  4. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +5 -26
  5. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +61 -104
  6. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +3 -9
  7. package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +29 -51
  8. package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +190 -203
  9. package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +4 -4
  10. package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +11 -31
  11. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +32 -32
  12. package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +5 -5
  13. package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +3 -3
  14. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +21 -48
  15. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -5
  16. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -12
  17. package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +11 -15
  18. package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +28 -80
  19. package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +56 -68
  20. package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -8
  21. package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
  22. package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +17 -50
  23. package/vscode/src/vs/workbench/contrib/debug/browser/debugTitle.js +31 -0
  24. package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +9 -4
  25. package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +12 -4
  26. package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +8 -8
  27. package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +13 -11
  28. package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +4 -4
  29. package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +6 -25
  30. package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +9 -12
  31. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +15 -21
  32. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +6 -20
  33. package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +5 -17
  34. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +10 -18
  35. package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +10 -13
  36. package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +61 -6
  37. package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +6 -9
  38. package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -12
  39. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +21 -13
  40. package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +41 -143
  41. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
  42. package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +11 -36
  43. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
  44. package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
  45. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  46. package/vscode/src/vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService.js +11 -16
  47. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -49
  48. package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -4
@@ -1,23 +1,14 @@
1
1
  import * as nls from 'monaco-editor/esm/vs/nls.js';
2
2
 
3
- const idDescription = ( nls.localize(
4
- 'JsonSchema.input.id',
5
- "The input's id is used to associate an input with a variable of the form ${input:id}."
6
- ));
7
- const typeDescription = ( nls.localize('JsonSchema.input.type', "The type of user input prompt to use."));
8
- const descriptionDescription = ( nls.localize(
9
- 'JsonSchema.input.description',
10
- "The description is shown when the user is prompted for input."
11
- ));
12
- const defaultDescription = ( nls.localize('JsonSchema.input.default', "The default value for the input."));
3
+ const idDescription = nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.id', "The input's id is used to associate an input with a variable of the form ${input:id}.");
4
+ const typeDescription = nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.type', "The type of user input prompt to use.");
5
+ const descriptionDescription = nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.description', "The description is shown when the user is prompted for input.");
6
+ const defaultDescription = nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.default', "The default value for the input.");
13
7
  const inputsSchema = {
14
8
  definitions: {
15
9
  inputs: {
16
10
  type: 'array',
17
- description: ( nls.localize(
18
- 'JsonSchema.inputs',
19
- 'User inputs. Used for defining user input prompts, such as free string input or a choice from several options.'
20
- )),
11
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.inputs', 'User inputs. Used for defining user input prompts, such as free string input or a choice from several options.'),
21
12
  items: {
22
13
  oneOf: [
23
14
  {
@@ -34,10 +25,7 @@ const inputsSchema = {
34
25
  description: typeDescription,
35
26
  enum: ['promptString'],
36
27
  enumDescriptions: [
37
- ( nls.localize(
38
- 'JsonSchema.input.type.promptString',
39
- "The 'promptString' type opens an input box to ask the user for input."
40
- )),
28
+ nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.type.promptString', "The 'promptString' type opens an input box to ask the user for input."),
41
29
  ]
42
30
  },
43
31
  description: {
@@ -50,10 +38,7 @@ const inputsSchema = {
50
38
  },
51
39
  password: {
52
40
  type: 'boolean',
53
- description: ( nls.localize(
54
- 'JsonSchema.input.password',
55
- "Controls if a password input is shown. Password input hides the typed text."
56
- )),
41
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.password', "Controls if a password input is shown. Password input hides the typed text."),
57
42
  },
58
43
  }
59
44
  },
@@ -71,10 +56,7 @@ const inputsSchema = {
71
56
  description: typeDescription,
72
57
  enum: ['pickString'],
73
58
  enumDescriptions: [
74
- ( nls.localize(
75
- 'JsonSchema.input.type.pickString',
76
- "The 'pickString' type shows a selection list."
77
- )),
59
+ nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.type.pickString', "The 'pickString' type shows a selection list."),
78
60
  ]
79
61
  },
80
62
  description: {
@@ -87,10 +69,7 @@ const inputsSchema = {
87
69
  },
88
70
  options: {
89
71
  type: 'array',
90
- description: ( nls.localize(
91
- 'JsonSchema.input.options',
92
- "An array of strings that defines the options for a quick pick."
93
- )),
72
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.options', "An array of strings that defines the options for a quick pick."),
94
73
  items: {
95
74
  oneOf: [
96
75
  {
@@ -103,11 +82,11 @@ const inputsSchema = {
103
82
  properties: {
104
83
  label: {
105
84
  type: 'string',
106
- description: ( nls.localize('JsonSchema.input.pickString.optionLabel', "Label for the option."))
85
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.pickString.optionLabel', "Label for the option.")
107
86
  },
108
87
  value: {
109
88
  type: 'string',
110
- description: ( nls.localize('JsonSchema.input.pickString.optionValue', "Value for the option."))
89
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.pickString.optionValue', "Value for the option.")
111
90
  }
112
91
  }
113
92
  }
@@ -130,38 +109,26 @@ const inputsSchema = {
130
109
  description: typeDescription,
131
110
  enum: ['command'],
132
111
  enumDescriptions: [
133
- ( nls.localize('JsonSchema.input.type.command', "The 'command' type executes a command.")),
112
+ nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.type.command', "The 'command' type executes a command."),
134
113
  ]
135
114
  },
136
115
  command: {
137
116
  type: 'string',
138
- description: ( nls.localize(
139
- 'JsonSchema.input.command.command',
140
- "The command to execute for this input variable."
141
- ))
117
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.command.command', "The command to execute for this input variable.")
142
118
  },
143
119
  args: {
144
120
  oneOf: [
145
121
  {
146
122
  type: 'object',
147
- description: ( nls.localize(
148
- 'JsonSchema.input.command.args',
149
- "Optional arguments passed to the command."
150
- ))
123
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.command.args', "Optional arguments passed to the command.")
151
124
  },
152
125
  {
153
126
  type: 'array',
154
- description: ( nls.localize(
155
- 'JsonSchema.input.command.args',
156
- "Optional arguments passed to the command."
157
- ))
127
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.command.args', "Optional arguments passed to the command.")
158
128
  },
159
129
  {
160
130
  type: 'string',
161
- description: ( nls.localize(
162
- 'JsonSchema.input.command.args',
163
- "Optional arguments passed to the command."
164
- ))
131
+ description: nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverSchema', 'JsonSchema.input.command.args', "Optional arguments passed to the command.")
165
132
  }
166
133
  ]
167
134
  }
@@ -3,10 +3,7 @@ import * as nls from 'monaco-editor/esm/vs/nls.js';
3
3
  function applyDeprecatedVariableMessage(schema) {
4
4
  schema.pattern = schema.pattern || '^(?!.*\\$\\{(env|config|command)\\.)';
5
5
  schema.patternErrorMessage = schema.patternErrorMessage ||
6
- ( nls.localize(
7
- 'deprecatedVariables',
8
- "'env.', 'config.' and 'command.' are deprecated, use 'env:', 'config:' and 'command:' instead."
9
- ));
6
+ nls.localizeWithPath('vs/workbench/services/configurationResolver/common/configurationResolverUtils', 'deprecatedVariables', "'env.', 'config.' and 'command.' are deprecated, use 'env:', 'config:' and 'command:' instead.");
10
7
  }
11
8
 
12
9
  export { applyDeprecatedVariableMessage };