@codingame/monaco-vscode-debug-service-override 1.83.5 → 1.83.7
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/workbench/contrib/debug/browser/baseDebugView.js +5 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +193 -86
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +44 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +254 -60
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +10 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +98 -28
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +429 -185
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +25 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +62 -11
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +130 -32
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +20 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +5 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +105 -21
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +10 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +18 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +39 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +100 -24
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +58 -26
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +17 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +12 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +80 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +15 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +8 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +36 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +24 -13
- package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +33 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +34 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +26 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +48 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +31 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +20 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +40 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +49 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +5 -60
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +18 -5
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +15 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +32 -22
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +205 -41
- package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +5 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +51 -10
- package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +5 -1
- package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +5 -1
- package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +5 -1
- package/vscode/src/vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService.js +18 -7
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +80 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +5 -1
package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js
CHANGED
|
@@ -1,14 +1,34 @@
|
|
|
1
1
|
import * as nls from 'monaco-editor/esm/vs/nls.js';
|
|
2
2
|
|
|
3
|
-
const idDescription = nls.localizeWithPath(
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
const idDescription = ( nls.localizeWithPath(
|
|
4
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
5
|
+
'JsonSchema.input.id',
|
|
6
|
+
"The input's id is used to associate an input with a variable of the form ${input:id}."
|
|
7
|
+
));
|
|
8
|
+
const typeDescription = ( nls.localizeWithPath(
|
|
9
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
10
|
+
'JsonSchema.input.type',
|
|
11
|
+
"The type of user input prompt to use."
|
|
12
|
+
));
|
|
13
|
+
const descriptionDescription = ( nls.localizeWithPath(
|
|
14
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
15
|
+
'JsonSchema.input.description',
|
|
16
|
+
"The description is shown when the user is prompted for input."
|
|
17
|
+
));
|
|
18
|
+
const defaultDescription = ( nls.localizeWithPath(
|
|
19
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
20
|
+
'JsonSchema.input.default',
|
|
21
|
+
"The default value for the input."
|
|
22
|
+
));
|
|
7
23
|
const inputsSchema = {
|
|
8
24
|
definitions: {
|
|
9
25
|
inputs: {
|
|
10
26
|
type: 'array',
|
|
11
|
-
description: nls.localizeWithPath(
|
|
27
|
+
description: ( nls.localizeWithPath(
|
|
28
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
29
|
+
'JsonSchema.inputs',
|
|
30
|
+
'User inputs. Used for defining user input prompts, such as free string input or a choice from several options.'
|
|
31
|
+
)),
|
|
12
32
|
items: {
|
|
13
33
|
oneOf: [
|
|
14
34
|
{
|
|
@@ -25,7 +45,11 @@ const inputsSchema = {
|
|
|
25
45
|
description: typeDescription,
|
|
26
46
|
enum: ['promptString'],
|
|
27
47
|
enumDescriptions: [
|
|
28
|
-
nls.localizeWithPath(
|
|
48
|
+
( nls.localizeWithPath(
|
|
49
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
50
|
+
'JsonSchema.input.type.promptString',
|
|
51
|
+
"The 'promptString' type opens an input box to ask the user for input."
|
|
52
|
+
)),
|
|
29
53
|
]
|
|
30
54
|
},
|
|
31
55
|
description: {
|
|
@@ -38,7 +62,11 @@ const inputsSchema = {
|
|
|
38
62
|
},
|
|
39
63
|
password: {
|
|
40
64
|
type: 'boolean',
|
|
41
|
-
description: nls.localizeWithPath(
|
|
65
|
+
description: ( nls.localizeWithPath(
|
|
66
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
67
|
+
'JsonSchema.input.password',
|
|
68
|
+
"Controls if a password input is shown. Password input hides the typed text."
|
|
69
|
+
)),
|
|
42
70
|
},
|
|
43
71
|
}
|
|
44
72
|
},
|
|
@@ -56,7 +84,11 @@ const inputsSchema = {
|
|
|
56
84
|
description: typeDescription,
|
|
57
85
|
enum: ['pickString'],
|
|
58
86
|
enumDescriptions: [
|
|
59
|
-
nls.localizeWithPath(
|
|
87
|
+
( nls.localizeWithPath(
|
|
88
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
89
|
+
'JsonSchema.input.type.pickString',
|
|
90
|
+
"The 'pickString' type shows a selection list."
|
|
91
|
+
)),
|
|
60
92
|
]
|
|
61
93
|
},
|
|
62
94
|
description: {
|
|
@@ -69,7 +101,11 @@ const inputsSchema = {
|
|
|
69
101
|
},
|
|
70
102
|
options: {
|
|
71
103
|
type: 'array',
|
|
72
|
-
description: nls.localizeWithPath(
|
|
104
|
+
description: ( nls.localizeWithPath(
|
|
105
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
106
|
+
'JsonSchema.input.options',
|
|
107
|
+
"An array of strings that defines the options for a quick pick."
|
|
108
|
+
)),
|
|
73
109
|
items: {
|
|
74
110
|
oneOf: [
|
|
75
111
|
{
|
|
@@ -82,11 +118,19 @@ const inputsSchema = {
|
|
|
82
118
|
properties: {
|
|
83
119
|
label: {
|
|
84
120
|
type: 'string',
|
|
85
|
-
description: nls.localizeWithPath(
|
|
121
|
+
description: ( nls.localizeWithPath(
|
|
122
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
123
|
+
'JsonSchema.input.pickString.optionLabel',
|
|
124
|
+
"Label for the option."
|
|
125
|
+
))
|
|
86
126
|
},
|
|
87
127
|
value: {
|
|
88
128
|
type: 'string',
|
|
89
|
-
description: nls.localizeWithPath(
|
|
129
|
+
description: ( nls.localizeWithPath(
|
|
130
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
131
|
+
'JsonSchema.input.pickString.optionValue',
|
|
132
|
+
"Value for the option."
|
|
133
|
+
))
|
|
90
134
|
}
|
|
91
135
|
}
|
|
92
136
|
}
|
|
@@ -109,26 +153,46 @@ const inputsSchema = {
|
|
|
109
153
|
description: typeDescription,
|
|
110
154
|
enum: ['command'],
|
|
111
155
|
enumDescriptions: [
|
|
112
|
-
nls.localizeWithPath(
|
|
156
|
+
( nls.localizeWithPath(
|
|
157
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
158
|
+
'JsonSchema.input.type.command',
|
|
159
|
+
"The 'command' type executes a command."
|
|
160
|
+
)),
|
|
113
161
|
]
|
|
114
162
|
},
|
|
115
163
|
command: {
|
|
116
164
|
type: 'string',
|
|
117
|
-
description: nls.localizeWithPath(
|
|
165
|
+
description: ( nls.localizeWithPath(
|
|
166
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
167
|
+
'JsonSchema.input.command.command',
|
|
168
|
+
"The command to execute for this input variable."
|
|
169
|
+
))
|
|
118
170
|
},
|
|
119
171
|
args: {
|
|
120
172
|
oneOf: [
|
|
121
173
|
{
|
|
122
174
|
type: 'object',
|
|
123
|
-
description: nls.localizeWithPath(
|
|
175
|
+
description: ( nls.localizeWithPath(
|
|
176
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
177
|
+
'JsonSchema.input.command.args',
|
|
178
|
+
"Optional arguments passed to the command."
|
|
179
|
+
))
|
|
124
180
|
},
|
|
125
181
|
{
|
|
126
182
|
type: 'array',
|
|
127
|
-
description: nls.localizeWithPath(
|
|
183
|
+
description: ( nls.localizeWithPath(
|
|
184
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
185
|
+
'JsonSchema.input.command.args',
|
|
186
|
+
"Optional arguments passed to the command."
|
|
187
|
+
))
|
|
128
188
|
},
|
|
129
189
|
{
|
|
130
190
|
type: 'string',
|
|
131
|
-
description: nls.localizeWithPath(
|
|
191
|
+
description: ( nls.localizeWithPath(
|
|
192
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverSchema',
|
|
193
|
+
'JsonSchema.input.command.args',
|
|
194
|
+
"Optional arguments passed to the command."
|
|
195
|
+
))
|
|
132
196
|
}
|
|
133
197
|
]
|
|
134
198
|
}
|
package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js
CHANGED
|
@@ -3,7 +3,11 @@ 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.localizeWithPath(
|
|
6
|
+
( nls.localizeWithPath(
|
|
7
|
+
'vs/workbench/services/configurationResolver/common/configurationResolverUtils',
|
|
8
|
+
'deprecatedVariables',
|
|
9
|
+
"'env.', 'config.' and 'command.' are deprecated, use 'env:', 'config:' and 'command:' instead."
|
|
10
|
+
));
|
|
7
11
|
}
|
|
8
12
|
|
|
9
13
|
export { applyDeprecatedVariableMessage };
|