@codingame/monaco-vscode-debug-service-override 4.5.1 → 4.5.2
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/platform/debug/common/extensionHostDebugIpc.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +105 -150
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +258 -529
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +28 -48
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +44 -71
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +84 -163
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +116 -120
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +7 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +78 -140
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +72 -75
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +25 -28
- package/vscode/src/vs/workbench/contrib/debug/browser/debugMemory.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +16 -48
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +140 -132
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +218 -175
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +5 -18
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +9 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +69 -110
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +68 -53
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +77 -56
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +50 -75
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +13 -29
- package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +22 -51
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +47 -73
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +60 -76
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +14 -43
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +23 -42
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +17 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +56 -94
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +40 -79
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +55 -57
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +14 -28
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +12 -15
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +71 -146
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +92 -111
- package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +5 -8
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +5 -12
- package/vscode/src/vs/workbench/services/configurationResolver/browser/baseConfigurationResolverService.js +42 -22
|
@@ -7,15 +7,12 @@ import { Extensions } from 'vscode/vscode/vs/workbench/services/extensionManagem
|
|
|
7
7
|
import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
|
|
8
8
|
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
9
9
|
|
|
10
|
+
const _moduleId = "vs/workbench/contrib/debug/common/debugSchemas";
|
|
10
11
|
const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
11
12
|
extensionPoint: 'debuggers',
|
|
12
13
|
defaultExtensionKind: ['workspace'],
|
|
13
14
|
jsonSchema: {
|
|
14
|
-
description: ( localizeWithPath(
|
|
15
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
16
|
-
'vscode.extension.contributes.debuggers',
|
|
17
|
-
'Contributes debug adapters.'
|
|
18
|
-
)),
|
|
15
|
+
description: ( localizeWithPath(_moduleId, 0, 'Contributes debug adapters.')),
|
|
19
16
|
type: 'array',
|
|
20
17
|
defaultSnippets: [{ body: [{ type: '' }] }],
|
|
21
18
|
items: {
|
|
@@ -24,97 +21,77 @@ const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
|
24
21
|
defaultSnippets: [{ body: { type: '', program: '', runtime: '' } }],
|
|
25
22
|
properties: {
|
|
26
23
|
type: {
|
|
27
|
-
description: ( localizeWithPath(
|
|
28
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
29
|
-
'vscode.extension.contributes.debuggers.type',
|
|
30
|
-
"Unique identifier for this debug adapter."
|
|
31
|
-
)),
|
|
24
|
+
description: ( localizeWithPath(_moduleId, 1, "Unique identifier for this debug adapter.")),
|
|
32
25
|
type: 'string'
|
|
33
26
|
},
|
|
34
27
|
label: {
|
|
35
|
-
description: ( localizeWithPath(
|
|
36
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
37
|
-
'vscode.extension.contributes.debuggers.label',
|
|
38
|
-
"Display name for this debug adapter."
|
|
39
|
-
)),
|
|
28
|
+
description: ( localizeWithPath(_moduleId, 2, "Display name for this debug adapter.")),
|
|
40
29
|
type: 'string'
|
|
41
30
|
},
|
|
42
31
|
program: {
|
|
43
32
|
description: ( localizeWithPath(
|
|
44
|
-
|
|
45
|
-
|
|
33
|
+
_moduleId,
|
|
34
|
+
3,
|
|
46
35
|
"Path to the debug adapter program. Path is either absolute or relative to the extension folder."
|
|
47
36
|
)),
|
|
48
37
|
type: 'string'
|
|
49
38
|
},
|
|
50
39
|
args: {
|
|
51
|
-
description: ( localizeWithPath(
|
|
52
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
53
|
-
'vscode.extension.contributes.debuggers.args',
|
|
54
|
-
"Optional arguments to pass to the adapter."
|
|
55
|
-
)),
|
|
40
|
+
description: ( localizeWithPath(_moduleId, 4, "Optional arguments to pass to the adapter.")),
|
|
56
41
|
type: 'array'
|
|
57
42
|
},
|
|
58
43
|
runtime: {
|
|
59
44
|
description: ( localizeWithPath(
|
|
60
|
-
|
|
61
|
-
|
|
45
|
+
_moduleId,
|
|
46
|
+
5,
|
|
62
47
|
"Optional runtime in case the program attribute is not an executable but requires a runtime."
|
|
63
48
|
)),
|
|
64
49
|
type: 'string'
|
|
65
50
|
},
|
|
66
51
|
runtimeArgs: {
|
|
67
|
-
description: ( localizeWithPath(
|
|
68
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
69
|
-
'vscode.extension.contributes.debuggers.runtimeArgs',
|
|
70
|
-
"Optional runtime arguments."
|
|
71
|
-
)),
|
|
52
|
+
description: ( localizeWithPath(_moduleId, 6, "Optional runtime arguments.")),
|
|
72
53
|
type: 'array'
|
|
73
54
|
},
|
|
74
55
|
variables: {
|
|
75
56
|
description: ( localizeWithPath(
|
|
76
|
-
|
|
77
|
-
|
|
57
|
+
_moduleId,
|
|
58
|
+
7,
|
|
78
59
|
"Mapping from interactive variables (e.g. ${action.pickProcess}) in `launch.json` to a command."
|
|
79
60
|
)),
|
|
80
61
|
type: 'object'
|
|
81
62
|
},
|
|
82
63
|
initialConfigurations: {
|
|
83
|
-
description: ( localizeWithPath(
|
|
84
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
85
|
-
'vscode.extension.contributes.debuggers.initialConfigurations',
|
|
86
|
-
"Configurations for generating the initial \'launch.json\'."
|
|
87
|
-
)),
|
|
64
|
+
description: ( localizeWithPath(_moduleId, 8, "Configurations for generating the initial \'launch.json\'.")),
|
|
88
65
|
type: ['array', 'string'],
|
|
89
66
|
},
|
|
90
67
|
languages: {
|
|
91
68
|
description: ( localizeWithPath(
|
|
92
|
-
|
|
93
|
-
|
|
69
|
+
_moduleId,
|
|
70
|
+
9,
|
|
94
71
|
"List of languages for which the debug extension could be considered the \"default debugger\"."
|
|
95
72
|
)),
|
|
96
73
|
type: 'array'
|
|
97
74
|
},
|
|
98
75
|
configurationSnippets: {
|
|
99
76
|
description: ( localizeWithPath(
|
|
100
|
-
|
|
101
|
-
|
|
77
|
+
_moduleId,
|
|
78
|
+
10,
|
|
102
79
|
"Snippets for adding new configurations in \'launch.json\'."
|
|
103
80
|
)),
|
|
104
81
|
type: 'array'
|
|
105
82
|
},
|
|
106
83
|
configurationAttributes: {
|
|
107
84
|
description: ( localizeWithPath(
|
|
108
|
-
|
|
109
|
-
|
|
85
|
+
_moduleId,
|
|
86
|
+
11,
|
|
110
87
|
"JSON schema configurations for validating \'launch.json\'."
|
|
111
88
|
)),
|
|
112
89
|
type: 'object'
|
|
113
90
|
},
|
|
114
91
|
when: {
|
|
115
92
|
description: ( localizeWithPath(
|
|
116
|
-
|
|
117
|
-
|
|
93
|
+
_moduleId,
|
|
94
|
+
12,
|
|
118
95
|
"Condition which must be true to enable this type of debugger. Consider using 'shellExecutionSupported', 'virtualWorkspace', 'resourceScheme' or an extension-defined context key as appropriate for this."
|
|
119
96
|
)),
|
|
120
97
|
type: 'string',
|
|
@@ -122,8 +99,8 @@ const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
|
122
99
|
},
|
|
123
100
|
hiddenWhen: {
|
|
124
101
|
description: ( localizeWithPath(
|
|
125
|
-
|
|
126
|
-
|
|
102
|
+
_moduleId,
|
|
103
|
+
13,
|
|
127
104
|
"When this condition is true, this debugger type is hidden from the debugger list, but is still enabled."
|
|
128
105
|
)),
|
|
129
106
|
type: 'string',
|
|
@@ -131,79 +108,51 @@ const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
|
131
108
|
},
|
|
132
109
|
deprecated: {
|
|
133
110
|
description: ( localizeWithPath(
|
|
134
|
-
|
|
135
|
-
|
|
111
|
+
_moduleId,
|
|
112
|
+
14,
|
|
136
113
|
"Optional message to mark this debug type as being deprecated."
|
|
137
114
|
)),
|
|
138
115
|
type: 'string',
|
|
139
116
|
default: ''
|
|
140
117
|
},
|
|
141
118
|
windows: {
|
|
142
|
-
description: ( localizeWithPath(
|
|
143
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
144
|
-
'vscode.extension.contributes.debuggers.windows',
|
|
145
|
-
"Windows specific settings."
|
|
146
|
-
)),
|
|
119
|
+
description: ( localizeWithPath(_moduleId, 15, "Windows specific settings.")),
|
|
147
120
|
type: 'object',
|
|
148
121
|
properties: {
|
|
149
122
|
runtime: {
|
|
150
|
-
description: ( localizeWithPath(
|
|
151
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
152
|
-
'vscode.extension.contributes.debuggers.windows.runtime',
|
|
153
|
-
"Runtime used for Windows."
|
|
154
|
-
)),
|
|
123
|
+
description: ( localizeWithPath(_moduleId, 16, "Runtime used for Windows.")),
|
|
155
124
|
type: 'string'
|
|
156
125
|
}
|
|
157
126
|
}
|
|
158
127
|
},
|
|
159
128
|
osx: {
|
|
160
|
-
description: ( localizeWithPath(
|
|
161
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
162
|
-
'vscode.extension.contributes.debuggers.osx',
|
|
163
|
-
"macOS specific settings."
|
|
164
|
-
)),
|
|
129
|
+
description: ( localizeWithPath(_moduleId, 17, "macOS specific settings.")),
|
|
165
130
|
type: 'object',
|
|
166
131
|
properties: {
|
|
167
132
|
runtime: {
|
|
168
|
-
description: ( localizeWithPath(
|
|
169
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
170
|
-
'vscode.extension.contributes.debuggers.osx.runtime',
|
|
171
|
-
"Runtime used for macOS."
|
|
172
|
-
)),
|
|
133
|
+
description: ( localizeWithPath(_moduleId, 18, "Runtime used for macOS.")),
|
|
173
134
|
type: 'string'
|
|
174
135
|
}
|
|
175
136
|
}
|
|
176
137
|
},
|
|
177
138
|
linux: {
|
|
178
|
-
description: ( localizeWithPath(
|
|
179
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
180
|
-
'vscode.extension.contributes.debuggers.linux',
|
|
181
|
-
"Linux specific settings."
|
|
182
|
-
)),
|
|
139
|
+
description: ( localizeWithPath(_moduleId, 19, "Linux specific settings.")),
|
|
183
140
|
type: 'object',
|
|
184
141
|
properties: {
|
|
185
142
|
runtime: {
|
|
186
|
-
description: ( localizeWithPath(
|
|
187
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
188
|
-
'vscode.extension.contributes.debuggers.linux.runtime',
|
|
189
|
-
"Runtime used for Linux."
|
|
190
|
-
)),
|
|
143
|
+
description: ( localizeWithPath(_moduleId, 20, "Runtime used for Linux.")),
|
|
191
144
|
type: 'string'
|
|
192
145
|
}
|
|
193
146
|
}
|
|
194
147
|
},
|
|
195
148
|
strings: {
|
|
196
|
-
description: ( localizeWithPath(
|
|
197
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
198
|
-
'vscode.extension.contributes.debuggers.strings',
|
|
199
|
-
"UI strings contributed by this debug adapter."
|
|
200
|
-
)),
|
|
149
|
+
description: ( localizeWithPath(_moduleId, 21, "UI strings contributed by this debug adapter.")),
|
|
201
150
|
type: 'object',
|
|
202
151
|
properties: {
|
|
203
152
|
unverifiedBreakpoints: {
|
|
204
153
|
description: ( localizeWithPath(
|
|
205
|
-
|
|
206
|
-
|
|
154
|
+
_moduleId,
|
|
155
|
+
22,
|
|
207
156
|
"When there are unverified breakpoints in a language supported by this debug adapter, this message will appear on the breakpoint hover and in the breakpoints view. Markdown and command links are supported."
|
|
208
157
|
)),
|
|
209
158
|
type: 'string'
|
|
@@ -217,11 +166,7 @@ const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
|
217
166
|
const breakpointsExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
218
167
|
extensionPoint: 'breakpoints',
|
|
219
168
|
jsonSchema: {
|
|
220
|
-
description: ( localizeWithPath(
|
|
221
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
222
|
-
'vscode.extension.contributes.breakpoints',
|
|
223
|
-
'Contributes breakpoints.'
|
|
224
|
-
)),
|
|
169
|
+
description: ( localizeWithPath(_moduleId, 23, 'Contributes breakpoints.')),
|
|
225
170
|
type: 'array',
|
|
226
171
|
defaultSnippets: [{ body: [{ language: '' }] }],
|
|
227
172
|
items: {
|
|
@@ -230,17 +175,13 @@ const breakpointsExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
|
230
175
|
defaultSnippets: [{ body: { language: '' } }],
|
|
231
176
|
properties: {
|
|
232
177
|
language: {
|
|
233
|
-
description: ( localizeWithPath(
|
|
234
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
235
|
-
'vscode.extension.contributes.breakpoints.language',
|
|
236
|
-
"Allow breakpoints for this language."
|
|
237
|
-
)),
|
|
178
|
+
description: ( localizeWithPath(_moduleId, 24, "Allow breakpoints for this language.")),
|
|
238
179
|
type: 'string'
|
|
239
180
|
},
|
|
240
181
|
when: {
|
|
241
182
|
description: ( localizeWithPath(
|
|
242
|
-
|
|
243
|
-
|
|
183
|
+
_moduleId,
|
|
184
|
+
25,
|
|
244
185
|
"Condition which must be true to enable breakpoints in this language. Consider matching this to the debugger when clause as appropriate."
|
|
245
186
|
)),
|
|
246
187
|
type: 'string',
|
|
@@ -253,8 +194,8 @@ const breakpointsExtPoint = ExtensionsRegistry.registerExtensionPoint({
|
|
|
253
194
|
const presentationSchema = {
|
|
254
195
|
type: 'object',
|
|
255
196
|
description: ( localizeWithPath(
|
|
256
|
-
|
|
257
|
-
|
|
197
|
+
_moduleId,
|
|
198
|
+
26,
|
|
258
199
|
"Presentation options on how to show this configuration in the debug configuration dropdown and the command palette."
|
|
259
200
|
)),
|
|
260
201
|
properties: {
|
|
@@ -262,8 +203,8 @@ const presentationSchema = {
|
|
|
262
203
|
type: 'boolean',
|
|
263
204
|
default: false,
|
|
264
205
|
description: ( localizeWithPath(
|
|
265
|
-
|
|
266
|
-
|
|
206
|
+
_moduleId,
|
|
207
|
+
27,
|
|
267
208
|
"Controls if this configuration should be shown in the configuration dropdown and the command palette."
|
|
268
209
|
))
|
|
269
210
|
},
|
|
@@ -271,8 +212,8 @@ const presentationSchema = {
|
|
|
271
212
|
type: 'string',
|
|
272
213
|
default: '',
|
|
273
214
|
description: ( localizeWithPath(
|
|
274
|
-
|
|
275
|
-
|
|
215
|
+
_moduleId,
|
|
216
|
+
28,
|
|
276
217
|
"Group that this configuration belongs to. Used for grouping and sorting in the configuration dropdown and the command palette."
|
|
277
218
|
))
|
|
278
219
|
},
|
|
@@ -280,8 +221,8 @@ const presentationSchema = {
|
|
|
280
221
|
type: 'number',
|
|
281
222
|
default: 1,
|
|
282
223
|
description: ( localizeWithPath(
|
|
283
|
-
|
|
284
|
-
|
|
224
|
+
_moduleId,
|
|
225
|
+
29,
|
|
285
226
|
"Order of this configuration within a group. Used for grouping and sorting in the configuration dropdown and the command palette."
|
|
286
227
|
))
|
|
287
228
|
}
|
|
@@ -296,11 +237,7 @@ const defaultCompound = { name: 'Compound', configurations: [] };
|
|
|
296
237
|
const launchSchema = {
|
|
297
238
|
id: launchSchemaId,
|
|
298
239
|
type: 'object',
|
|
299
|
-
title: ( localizeWithPath(
|
|
300
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
301
|
-
'app.launch.json.title',
|
|
302
|
-
"Launch"
|
|
303
|
-
)),
|
|
240
|
+
title: ( localizeWithPath(_moduleId, 30, "Launch")),
|
|
304
241
|
allowTrailingCommas: true,
|
|
305
242
|
allowComments: true,
|
|
306
243
|
required: [],
|
|
@@ -308,18 +245,14 @@ const launchSchema = {
|
|
|
308
245
|
properties: {
|
|
309
246
|
version: {
|
|
310
247
|
type: 'string',
|
|
311
|
-
description: ( localizeWithPath(
|
|
312
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
313
|
-
'app.launch.json.version',
|
|
314
|
-
"Version of this file format."
|
|
315
|
-
)),
|
|
248
|
+
description: ( localizeWithPath(_moduleId, 31, "Version of this file format.")),
|
|
316
249
|
default: '0.2.0'
|
|
317
250
|
},
|
|
318
251
|
configurations: {
|
|
319
252
|
type: 'array',
|
|
320
253
|
description: ( localizeWithPath(
|
|
321
|
-
|
|
322
|
-
|
|
254
|
+
_moduleId,
|
|
255
|
+
32,
|
|
323
256
|
"List of configurations. Add new configurations or edit existing ones by using IntelliSense."
|
|
324
257
|
)),
|
|
325
258
|
items: {
|
|
@@ -331,8 +264,8 @@ const launchSchema = {
|
|
|
331
264
|
compounds: {
|
|
332
265
|
type: 'array',
|
|
333
266
|
description: ( localizeWithPath(
|
|
334
|
-
|
|
335
|
-
|
|
267
|
+
_moduleId,
|
|
268
|
+
33,
|
|
336
269
|
"List of compounds. Each compound references multiple configurations which will get launched together."
|
|
337
270
|
)),
|
|
338
271
|
items: {
|
|
@@ -342,8 +275,8 @@ const launchSchema = {
|
|
|
342
275
|
name: {
|
|
343
276
|
type: 'string',
|
|
344
277
|
description: ( localizeWithPath(
|
|
345
|
-
|
|
346
|
-
|
|
278
|
+
_moduleId,
|
|
279
|
+
34,
|
|
347
280
|
"Name of compound. Appears in the launch configuration drop down menu."
|
|
348
281
|
))
|
|
349
282
|
},
|
|
@@ -354,11 +287,7 @@ const launchSchema = {
|
|
|
354
287
|
items: {
|
|
355
288
|
oneOf: [{
|
|
356
289
|
enum: [],
|
|
357
|
-
description: ( localizeWithPath(
|
|
358
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
359
|
-
'useUniqueNames',
|
|
360
|
-
"Please use unique configuration names."
|
|
361
|
-
))
|
|
290
|
+
description: ( localizeWithPath(_moduleId, 35, "Please use unique configuration names."))
|
|
362
291
|
}, {
|
|
363
292
|
type: 'object',
|
|
364
293
|
required: ['name'],
|
|
@@ -366,25 +295,21 @@ const launchSchema = {
|
|
|
366
295
|
name: {
|
|
367
296
|
enum: [],
|
|
368
297
|
description: ( localizeWithPath(
|
|
369
|
-
|
|
370
|
-
|
|
298
|
+
_moduleId,
|
|
299
|
+
34,
|
|
371
300
|
"Name of compound. Appears in the launch configuration drop down menu."
|
|
372
301
|
))
|
|
373
302
|
},
|
|
374
303
|
folder: {
|
|
375
304
|
enum: [],
|
|
376
|
-
description: ( localizeWithPath(
|
|
377
|
-
'vs/workbench/contrib/debug/common/debugSchemas',
|
|
378
|
-
'app.launch.json.compound.folder',
|
|
379
|
-
"Name of folder in which the compound is located."
|
|
380
|
-
))
|
|
305
|
+
description: ( localizeWithPath(_moduleId, 36, "Name of folder in which the compound is located."))
|
|
381
306
|
}
|
|
382
307
|
}
|
|
383
308
|
}]
|
|
384
309
|
},
|
|
385
310
|
description: ( localizeWithPath(
|
|
386
|
-
|
|
387
|
-
|
|
311
|
+
_moduleId,
|
|
312
|
+
37,
|
|
388
313
|
"Names of configurations that will be started as part of this compound."
|
|
389
314
|
))
|
|
390
315
|
},
|
|
@@ -392,8 +317,8 @@ const launchSchema = {
|
|
|
392
317
|
type: 'boolean',
|
|
393
318
|
default: false,
|
|
394
319
|
description: ( localizeWithPath(
|
|
395
|
-
|
|
396
|
-
|
|
320
|
+
_moduleId,
|
|
321
|
+
38,
|
|
397
322
|
"Controls whether manually terminating one session will stop all of the compound sessions."
|
|
398
323
|
))
|
|
399
324
|
},
|
|
@@ -401,8 +326,8 @@ const launchSchema = {
|
|
|
401
326
|
type: 'string',
|
|
402
327
|
default: '',
|
|
403
328
|
description: ( localizeWithPath(
|
|
404
|
-
|
|
405
|
-
|
|
329
|
+
_moduleId,
|
|
330
|
+
39,
|
|
406
331
|
"Task to run before any of the compound configurations start."
|
|
407
332
|
))
|
|
408
333
|
}
|
|
@@ -430,15 +355,15 @@ class DebuggersDataRenderer extends Disposable {
|
|
|
430
355
|
return { data: { headers: [], rows: [] }, dispose: () => { } };
|
|
431
356
|
}
|
|
432
357
|
const headers = [
|
|
433
|
-
( localizeWithPath(
|
|
434
|
-
( localizeWithPath(
|
|
358
|
+
( localizeWithPath(_moduleId, 40, "Name")),
|
|
359
|
+
( localizeWithPath(_moduleId, 41, "Type")),
|
|
435
360
|
];
|
|
436
|
-
const rows = ( contrib.map(d => {
|
|
361
|
+
const rows = ( (contrib.map(d => {
|
|
437
362
|
return [
|
|
438
363
|
d.label ?? '',
|
|
439
364
|
d.type
|
|
440
365
|
];
|
|
441
|
-
}));
|
|
366
|
+
})));
|
|
442
367
|
return {
|
|
443
368
|
data: {
|
|
444
369
|
headers,
|
|
@@ -448,13 +373,13 @@ class DebuggersDataRenderer extends Disposable {
|
|
|
448
373
|
};
|
|
449
374
|
}
|
|
450
375
|
}
|
|
451
|
-
( Registry.as(Extensions.ExtensionFeaturesRegistry)).registerExtensionFeature({
|
|
376
|
+
( (Registry.as(Extensions.ExtensionFeaturesRegistry))).registerExtensionFeature({
|
|
452
377
|
id: 'debuggers',
|
|
453
|
-
label: ( localizeWithPath(
|
|
378
|
+
label: ( localizeWithPath(_moduleId, 42, "Debuggers")),
|
|
454
379
|
access: {
|
|
455
380
|
canToggle: false
|
|
456
381
|
},
|
|
457
|
-
renderer: ( new SyncDescriptor(DebuggersDataRenderer)),
|
|
382
|
+
renderer: ( (new SyncDescriptor(DebuggersDataRenderer))),
|
|
458
383
|
});
|
|
459
384
|
|
|
460
385
|
export { breakpointsExtPoint, debuggersExtPoint, launchSchema, presentationSchema };
|