@codingame/monaco-vscode-debug-service-override 24.2.0 → 25.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.
- package/package.json +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +16 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +121 -112
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugChatIntegration.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugChatIntegration.js +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +25 -25
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +9 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +26 -22
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +69 -59
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +17 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/media/debugViewlet.css +13 -13
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +16 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +10 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +44 -44
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +17 -14
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
|
@@ -87,7 +87,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
87
87
|
delta.added.forEach(added => {
|
|
88
88
|
added.value.forEach(rawAdapter => {
|
|
89
89
|
if (!rawAdapter.type || (typeof rawAdapter.type !== 'string')) {
|
|
90
|
-
added.collector.error(( localize(
|
|
90
|
+
added.collector.error(( localize(6701, "Debugger 'type' can not be omitted and must be of type 'string'.")));
|
|
91
91
|
}
|
|
92
92
|
if (rawAdapter.type !== '*') {
|
|
93
93
|
const existing = this.getDebugger(rawAdapter.type);
|
|
@@ -137,7 +137,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
137
137
|
'name': {
|
|
138
138
|
type: 'string',
|
|
139
139
|
description: ( localize(
|
|
140
|
-
|
|
140
|
+
6702,
|
|
141
141
|
"Name of configuration; appears in the launch configuration dropdown menu."
|
|
142
142
|
)),
|
|
143
143
|
default: 'Launch'
|
|
@@ -145,7 +145,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
145
145
|
'debugServer': {
|
|
146
146
|
type: 'number',
|
|
147
147
|
description: ( localize(
|
|
148
|
-
|
|
148
|
+
6703,
|
|
149
149
|
"For debug extension development only: if a port is specified VS Code tries to connect to a debug adapter running in server mode"
|
|
150
150
|
)),
|
|
151
151
|
default: 4711
|
|
@@ -156,7 +156,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
156
156
|
}],
|
|
157
157
|
default: '',
|
|
158
158
|
defaultSnippets: [{ body: { task: '', type: '' } }],
|
|
159
|
-
description: ( localize(
|
|
159
|
+
description: ( localize(6704, "Task to run before debug session starts.")),
|
|
160
160
|
examples: this.taskLabels,
|
|
161
161
|
},
|
|
162
162
|
'postDebugTask': {
|
|
@@ -165,7 +165,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
165
165
|
}],
|
|
166
166
|
default: '',
|
|
167
167
|
defaultSnippets: [{ body: { task: '', type: '' } }],
|
|
168
|
-
description: ( localize(
|
|
168
|
+
description: ( localize(6705, "Task to run after debug session ends.")),
|
|
169
169
|
examples: this.taskLabels,
|
|
170
170
|
},
|
|
171
171
|
'presentation': presentationSchema,
|
|
@@ -173,7 +173,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
173
173
|
'suppressMultipleSessionWarning': {
|
|
174
174
|
type: 'boolean',
|
|
175
175
|
description: ( localize(
|
|
176
|
-
|
|
176
|
+
6706,
|
|
177
177
|
"Disable the warning when trying to start the same debug configuration more than once."
|
|
178
178
|
)),
|
|
179
179
|
default: true
|
|
@@ -327,11 +327,11 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
327
327
|
const { confirmed } = await this.dialogService.confirm({
|
|
328
328
|
type: Severity.Warning,
|
|
329
329
|
message: ( localize(
|
|
330
|
-
|
|
330
|
+
6707,
|
|
331
331
|
"You don't have an extension for debugging {0}. Should we find a {0} extension in the Marketplace?",
|
|
332
332
|
languageLabel
|
|
333
333
|
)),
|
|
334
|
-
primaryButton: ( localize(
|
|
334
|
+
primaryButton: ( localize(6708, "&&Find {0} extension", languageLabel))
|
|
335
335
|
});
|
|
336
336
|
if (confirmed) {
|
|
337
337
|
await this.commandService.executeCommand('debug.installAdditionalDebuggers', languageLabel);
|
|
@@ -358,7 +358,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
358
358
|
const picks = [];
|
|
359
359
|
const dynamic = await this.delegate.configurationManager().getDynamicProviders();
|
|
360
360
|
if (suggestedCandidates.length > 0) {
|
|
361
|
-
picks.push({ type: 'separator', label: ( localize(
|
|
361
|
+
picks.push({ type: 'separator', label: ( localize(6709, "Suggested")) }, ...( suggestedCandidates.map(c => ({ label: c.label, pick: () => ({ debugger: c }) }))));
|
|
362
362
|
}
|
|
363
363
|
if (otherCandidates.length > 0) {
|
|
364
364
|
if (picks.length > 0) {
|
|
@@ -372,7 +372,7 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
372
372
|
}
|
|
373
373
|
for (const d of dynamic) {
|
|
374
374
|
picks.push({
|
|
375
|
-
label: ( localize(
|
|
375
|
+
label: ( localize(6710, "More {0} options...", d.label)),
|
|
376
376
|
pick: async () => {
|
|
377
377
|
const cfg = await d.pick();
|
|
378
378
|
if (!cfg) {
|
|
@@ -383,14 +383,14 @@ let AdapterManager = class AdapterManager extends Disposable {
|
|
|
383
383
|
});
|
|
384
384
|
}
|
|
385
385
|
}
|
|
386
|
-
picks.push({ type: 'separator', label: '' }, { label: languageLabel ? ( localize(
|
|
386
|
+
picks.push({ type: 'separator', label: '' }, { label: languageLabel ? ( localize(6711, "Install an extension for {0}...", languageLabel)) : ( localize(6712, "Install extension...")) });
|
|
387
387
|
const contributed = this.menuService.getMenuActions(MenuId.DebugCreateConfiguration, this.contextKeyService);
|
|
388
388
|
for (const [, action] of contributed) {
|
|
389
389
|
for (const item of action) {
|
|
390
390
|
picks.push(item);
|
|
391
391
|
}
|
|
392
392
|
}
|
|
393
|
-
const placeHolder = ( localize(
|
|
393
|
+
const placeHolder = ( localize(6713, "Select debugger"));
|
|
394
394
|
return this.quickInputService.pick(picks, { activeItem: picks[0], placeHolder }).then(async (picked) => {
|
|
395
395
|
if (picked && 'pick' in picked && typeof picked.pick === 'function') {
|
|
396
396
|
return await picked.pick();
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
2
2
|
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
3
3
|
import { IWorkbenchContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions";
|
|
4
|
-
import { IChatContextPickService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/chatContextPickService.service";
|
|
4
|
+
import { IChatContextPickService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/attachments/chatContextPickService.service";
|
|
5
5
|
export declare class DebugChatContextContribution extends Disposable implements IWorkbenchContribution {
|
|
6
6
|
static readonly ID = "workbench.contrib.chat.debugChatContextContribution";
|
|
7
7
|
constructor(contextPickService: IChatContextPickService, instantiationService: IInstantiationService);
|
|
@@ -11,8 +11,8 @@ import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
|
11
11
|
import { registerAction2, Action2, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
12
12
|
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
13
13
|
import { IChatWidgetService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/chat.service';
|
|
14
|
-
import { IChatContextPickService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/chatContextPickService.service';
|
|
15
|
-
import { ChatContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/chatContextKeys';
|
|
14
|
+
import { IChatContextPickService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/attachments/chatContextPickService.service';
|
|
15
|
+
import { ChatContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/actions/chatContextKeys';
|
|
16
16
|
import { State } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
17
17
|
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
18
18
|
import { Variable } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
@@ -31,7 +31,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
31
31
|
constructor(debugService) {
|
|
32
32
|
this.debugService = debugService;
|
|
33
33
|
this.type = 'pickerPick';
|
|
34
|
-
this.label = ( localize(
|
|
34
|
+
this.label = ( localize(6714, 'Debug Session...'));
|
|
35
35
|
this.icon = Codicon.debug;
|
|
36
36
|
this.ordinal = -200;
|
|
37
37
|
}
|
|
@@ -46,7 +46,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
46
46
|
const query = observableValue('debugPicker.query', '');
|
|
47
47
|
const picksObservable = this.createPicksObservable(mode, query, store);
|
|
48
48
|
return {
|
|
49
|
-
placeholder: ( localize(
|
|
49
|
+
placeholder: ( localize(6715, 'Select debug data to attach')),
|
|
50
50
|
picks: (_queryObs, token) => {
|
|
51
51
|
store.add(autorun(reader => {
|
|
52
52
|
query.set(_queryObs.read(reader), undefined);
|
|
@@ -95,7 +95,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
95
95
|
return picks;
|
|
96
96
|
}
|
|
97
97
|
picks.push({
|
|
98
|
-
label: ( localize(
|
|
98
|
+
label: ( localize(6716, 'Expression Value...')),
|
|
99
99
|
iconClass: ThemeIcon.asClassName(Codicon.symbolVariable),
|
|
100
100
|
asAttachment: () => {
|
|
101
101
|
mode.set(PickerMode.Expression, undefined);
|
|
@@ -104,7 +104,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
104
104
|
});
|
|
105
105
|
const watches = this.debugService.getModel().getWatchExpressions();
|
|
106
106
|
if (watches.length > 0) {
|
|
107
|
-
picks.push({ type: 'separator', label: ( localize(
|
|
107
|
+
picks.push({ type: 'separator', label: ( localize(6717, 'Watch Expressions')) });
|
|
108
108
|
for (const watch of watches) {
|
|
109
109
|
picks.push({
|
|
110
110
|
label: watch.name,
|
|
@@ -129,7 +129,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
129
129
|
const variables = await scope.getChildren();
|
|
130
130
|
if (variables.length > 1) {
|
|
131
131
|
picks.push({
|
|
132
|
-
label: ( localize(
|
|
132
|
+
label: ( localize(6718, 'All variables in {0}', scope.name)),
|
|
133
133
|
iconClass: ThemeIcon.asClassName(Codicon.symbolNamespace),
|
|
134
134
|
asAttachment: () => createDebugAttachments(stackFrame, createScopeEntry(scope, variables)),
|
|
135
135
|
});
|
|
@@ -163,7 +163,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
163
163
|
async evaluateExpression(expression, token) {
|
|
164
164
|
if (!expression.trim()) {
|
|
165
165
|
return [{
|
|
166
|
-
label: ( localize(
|
|
166
|
+
label: ( localize(6719, 'Type an expression to evaluate...')),
|
|
167
167
|
disabled: true,
|
|
168
168
|
asAttachment: () => 'noop',
|
|
169
169
|
}];
|
|
@@ -173,7 +173,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
173
173
|
const stackFrame = viewModel.focusedStackFrame;
|
|
174
174
|
if (!session || !stackFrame) {
|
|
175
175
|
return [{
|
|
176
|
-
label: ( localize(
|
|
176
|
+
label: ( localize(6720, 'No active debug session')),
|
|
177
177
|
disabled: true,
|
|
178
178
|
asAttachment: () => 'noop',
|
|
179
179
|
}];
|
|
@@ -206,7 +206,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
206
206
|
else {
|
|
207
207
|
return [{
|
|
208
208
|
label: expression,
|
|
209
|
-
description: ( localize(
|
|
209
|
+
description: ( localize(6721, 'No result')),
|
|
210
210
|
disabled: true,
|
|
211
211
|
asAttachment: () => 'noop',
|
|
212
212
|
}];
|
|
@@ -215,7 +215,7 @@ let DebugSessionContextPick = class DebugSessionContextPick {
|
|
|
215
215
|
catch (err) {
|
|
216
216
|
return [{
|
|
217
217
|
label: expression,
|
|
218
|
-
description: err instanceof Error ? err.message : ( localize(
|
|
218
|
+
description: err instanceof Error ? err.message : ( localize(6722, 'Evaluation error')),
|
|
219
219
|
disabled: true,
|
|
220
220
|
asAttachment: () => 'noop',
|
|
221
221
|
}];
|
|
@@ -309,7 +309,7 @@ registerAction2(class extends Action2 {
|
|
|
309
309
|
constructor() {
|
|
310
310
|
super({
|
|
311
311
|
id: 'workbench.debug.action.addVariableToChat',
|
|
312
|
-
title: ( localize(
|
|
312
|
+
title: ( localize(6723, 'Add to Chat')),
|
|
313
313
|
f1: false,
|
|
314
314
|
menu: {
|
|
315
315
|
id: MenuId.DebugVariablesContext,
|
|
@@ -340,7 +340,7 @@ registerAction2(class extends Action2 {
|
|
|
340
340
|
constructor() {
|
|
341
341
|
super({
|
|
342
342
|
id: 'workbench.debug.action.addWatchExpressionToChat',
|
|
343
|
-
title: ( localize(
|
|
343
|
+
title: ( localize(6723, 'Add to Chat')),
|
|
344
344
|
f1: false,
|
|
345
345
|
menu: {
|
|
346
346
|
id: MenuId.DebugWatchContext,
|
|
@@ -368,7 +368,7 @@ registerAction2(class extends Action2 {
|
|
|
368
368
|
constructor() {
|
|
369
369
|
super({
|
|
370
370
|
id: 'workbench.debug.action.addScopeToChat',
|
|
371
|
-
title: ( localize(
|
|
371
|
+
title: ( localize(6723, 'Add to Chat')),
|
|
372
372
|
f1: false,
|
|
373
373
|
menu: {
|
|
374
374
|
id: MenuId.DebugScopesContext,
|
|
@@ -186,7 +186,7 @@ let ConfigurationManager = class ConfigurationManager {
|
|
|
186
186
|
disposables.add(token);
|
|
187
187
|
const input = disposables.add(this.quickInputService.createQuickPick());
|
|
188
188
|
input.busy = true;
|
|
189
|
-
input.placeholder = ( localize(
|
|
189
|
+
input.placeholder = ( localize(6774, "Select Launch Configuration"));
|
|
190
190
|
const chosenPromise = ( new Promise(resolve => {
|
|
191
191
|
disposables.add(input.onDidAccept(() => resolve(input.activeItems[0])));
|
|
192
192
|
disposables.add(input.onDidTriggerItemButton(async (context) => {
|
|
@@ -230,7 +230,7 @@ let ConfigurationManager = class ConfigurationManager {
|
|
|
230
230
|
config,
|
|
231
231
|
buttons: [{
|
|
232
232
|
iconClass: ThemeIcon.asClassName(debugConfigure),
|
|
233
|
-
tooltip: ( localize(
|
|
233
|
+
tooltip: ( localize(6775, "Edit Debug Configuration in launch.json"))
|
|
234
234
|
}],
|
|
235
235
|
launch
|
|
236
236
|
})))));
|
|
@@ -548,7 +548,7 @@ let Launch = class Launch extends AbstractLaunch {
|
|
|
548
548
|
}
|
|
549
549
|
catch (error) {
|
|
550
550
|
throw ( new Error(( localize(
|
|
551
|
-
|
|
551
|
+
6776,
|
|
552
552
|
"Unable to create 'launch.json' file inside the '.vscode' folder ({0}).",
|
|
553
553
|
error.message
|
|
554
554
|
))));
|
|
@@ -602,7 +602,7 @@ let WorkspaceLaunch = class WorkspaceLaunch extends AbstractLaunch {
|
|
|
602
602
|
return this.contextService.getWorkspace().configuration;
|
|
603
603
|
}
|
|
604
604
|
get name() {
|
|
605
|
-
return localize(
|
|
605
|
+
return localize(6777, "workspace");
|
|
606
606
|
}
|
|
607
607
|
getConfig() {
|
|
608
608
|
return this.configurationService.inspect('launch').workspaceValue;
|
|
@@ -646,7 +646,7 @@ let UserLaunch = class UserLaunch extends AbstractLaunch {
|
|
|
646
646
|
return this.preferencesService.userSettingsResource;
|
|
647
647
|
}
|
|
648
648
|
get name() {
|
|
649
|
-
return localize(
|
|
649
|
+
return localize(6778, "user settings");
|
|
650
650
|
}
|
|
651
651
|
get hidden() {
|
|
652
652
|
return true;
|
|
@@ -27,7 +27,7 @@ let DebugConsoleQuickAccess = class DebugConsoleQuickAccess extends PickerQuickA
|
|
|
27
27
|
if (debugConsolePicks.length > 0) {
|
|
28
28
|
debugConsolePicks.push({ type: 'separator' });
|
|
29
29
|
}
|
|
30
|
-
const createTerminalLabel = ( localize(
|
|
30
|
+
const createTerminalLabel = ( localize(6779, "Start a New Debug Session"));
|
|
31
31
|
debugConsolePicks.push({
|
|
32
32
|
label: `$(plus) ${createTerminalLabel}`,
|
|
33
33
|
ariaLabel: createTerminalLabel,
|
|
@@ -16,7 +16,7 @@ import { IContextMenuService } from '@codingame/monaco-vscode-api/vscode/vs/plat
|
|
|
16
16
|
import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
17
17
|
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
18
18
|
import { PanelFocusContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
|
|
19
|
-
import { ChatContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/chatContextKeys';
|
|
19
|
+
import { ChatContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/actions/chatContextKeys';
|
|
20
20
|
import { openBreakpointSource } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/breakpointsView';
|
|
21
21
|
import { DisassemblyView } from './disassemblyView.js';
|
|
22
22
|
import { CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DISASSEMBLY_VIEW_FOCUS, BREAKPOINT_EDITOR_CONTRIBUTION_ID, BreakpointWidgetContext, CONTEXT_IN_DEBUG_MODE, CONTEXT_DEBUG_STATE, CONTEXT_DISASSEMBLE_REQUEST_SUPPORTED, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST, CONTEXT_CALLSTACK_ITEM_TYPE, CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE, REPL_VIEW_ID, WATCH_VIEW_ID, EDITOR_CONTRIBUTION_ID, CONTEXT_STEP_INTO_TARGETS_SUPPORTED, CONTEXT_EXCEPTION_WIDGET_VISIBLE } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
@@ -32,8 +32,8 @@ class ToggleBreakpointAction extends Action2 {
|
|
|
32
32
|
super({
|
|
33
33
|
id: TOGGLE_BREAKPOINT_ID,
|
|
34
34
|
title: {
|
|
35
|
-
...( localize2(
|
|
36
|
-
mnemonicTitle: ( localize(
|
|
35
|
+
...( localize2(6780, "Debug: Toggle Breakpoint")),
|
|
36
|
+
mnemonicTitle: ( localize(6781, "Toggle &&Breakpoint")),
|
|
37
37
|
},
|
|
38
38
|
f1: true,
|
|
39
39
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -90,11 +90,11 @@ class ConditionalBreakpointAction extends EditorAction {
|
|
|
90
90
|
constructor() {
|
|
91
91
|
super({
|
|
92
92
|
id: 'editor.debug.action.conditionalBreakpoint',
|
|
93
|
-
label: ( localize2(
|
|
93
|
+
label: ( localize2(6782, "Debug: Add Conditional Breakpoint...")),
|
|
94
94
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
95
95
|
menuOpts: {
|
|
96
96
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
97
|
-
title: ( localize(
|
|
97
|
+
title: ( localize(6783, "&&Conditional Breakpoint...")),
|
|
98
98
|
group: '1_breakpoints',
|
|
99
99
|
order: 1,
|
|
100
100
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -113,12 +113,12 @@ class LogPointAction extends EditorAction {
|
|
|
113
113
|
constructor() {
|
|
114
114
|
super({
|
|
115
115
|
id: 'editor.debug.action.addLogPoint',
|
|
116
|
-
label: ( localize2(
|
|
116
|
+
label: ( localize2(6784, "Debug: Add Logpoint...")),
|
|
117
117
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
118
118
|
menuOpts: [
|
|
119
119
|
{
|
|
120
120
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
121
|
-
title: ( localize(
|
|
121
|
+
title: ( localize(6785, "&&Logpoint...")),
|
|
122
122
|
group: '1_breakpoints',
|
|
123
123
|
order: 4,
|
|
124
124
|
when: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -138,13 +138,13 @@ class TriggerByBreakpointAction extends EditorAction {
|
|
|
138
138
|
constructor() {
|
|
139
139
|
super({
|
|
140
140
|
id: 'editor.debug.action.triggerByBreakpoint',
|
|
141
|
-
label: ( localize(
|
|
141
|
+
label: ( localize(6786, "Debug: Add Triggered Breakpoint...")),
|
|
142
142
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
143
143
|
alias: 'Debug: Triggered Breakpoint...',
|
|
144
144
|
menuOpts: [
|
|
145
145
|
{
|
|
146
146
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
147
|
-
title: ( localize(
|
|
147
|
+
title: ( localize(6787, "&&Triggered Breakpoint...")),
|
|
148
148
|
group: '1_breakpoints',
|
|
149
149
|
order: 4,
|
|
150
150
|
when: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -164,12 +164,12 @@ class EditBreakpointAction extends EditorAction {
|
|
|
164
164
|
constructor() {
|
|
165
165
|
super({
|
|
166
166
|
id: 'editor.debug.action.editBreakpoint',
|
|
167
|
-
label: ( localize(
|
|
167
|
+
label: ( localize(6788, "Debug: Edit Breakpoint")),
|
|
168
168
|
alias: 'Debug: Edit Existing Breakpoint',
|
|
169
169
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
170
170
|
menuOpts: {
|
|
171
171
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
172
|
-
title: ( localize(
|
|
172
|
+
title: ( localize(6789, "&&Edit Breakpoint")),
|
|
173
173
|
group: '1_breakpoints',
|
|
174
174
|
order: 1,
|
|
175
175
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -204,8 +204,8 @@ class OpenDisassemblyViewAction extends Action2 {
|
|
|
204
204
|
super({
|
|
205
205
|
id: OpenDisassemblyViewAction.ID,
|
|
206
206
|
title: {
|
|
207
|
-
...( localize2(
|
|
208
|
-
mnemonicTitle: ( localize(
|
|
207
|
+
...( localize2(6790, "Open Disassembly View")),
|
|
208
|
+
mnemonicTitle: ( localize(6791, "&&DisassemblyView")),
|
|
209
209
|
},
|
|
210
210
|
precondition: CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE,
|
|
211
211
|
menu: [
|
|
@@ -240,11 +240,11 @@ class ToggleDisassemblyViewSourceCodeAction extends Action2 {
|
|
|
240
240
|
super({
|
|
241
241
|
id: ToggleDisassemblyViewSourceCodeAction.ID,
|
|
242
242
|
title: {
|
|
243
|
-
...( localize2(
|
|
244
|
-
mnemonicTitle: ( localize(
|
|
243
|
+
...( localize2(6792, "Toggle Source Code in Disassembly View")),
|
|
244
|
+
mnemonicTitle: ( localize(6793, "&&ToggleSource")),
|
|
245
245
|
},
|
|
246
246
|
metadata: {
|
|
247
|
-
description: ( localize2(
|
|
247
|
+
description: ( localize2(6794, 'Shows or hides source code in disassembly'))
|
|
248
248
|
},
|
|
249
249
|
f1: true,
|
|
250
250
|
});
|
|
@@ -259,7 +259,7 @@ class ToggleDisassemblyViewSourceCodeAction extends Action2 {
|
|
|
259
259
|
}
|
|
260
260
|
class RunToCursorAction extends EditorAction {
|
|
261
261
|
static { this.ID = 'editor.debug.action.runToCursor'; }
|
|
262
|
-
static { this.LABEL = ( localize2(
|
|
262
|
+
static { this.LABEL = ( localize2(6795, "Run to Cursor")); }
|
|
263
263
|
constructor() {
|
|
264
264
|
super({
|
|
265
265
|
id: RunToCursorAction.ID,
|
|
@@ -292,7 +292,7 @@ class RunToCursorAction extends EditorAction {
|
|
|
292
292
|
}
|
|
293
293
|
class SelectionToReplAction extends EditorAction {
|
|
294
294
|
static { this.ID = 'editor.debug.action.selectionToRepl'; }
|
|
295
|
-
static { this.LABEL = ( localize2(
|
|
295
|
+
static { this.LABEL = ( localize2(6796, "Evaluate in Debug Console")); }
|
|
296
296
|
constructor() {
|
|
297
297
|
super({
|
|
298
298
|
id: SelectionToReplAction.ID,
|
|
@@ -327,7 +327,7 @@ class SelectionToReplAction extends EditorAction {
|
|
|
327
327
|
}
|
|
328
328
|
class SelectionToWatchExpressionsAction extends EditorAction {
|
|
329
329
|
static { this.ID = 'editor.debug.action.selectionToWatch'; }
|
|
330
|
-
static { this.LABEL = ( localize2(
|
|
330
|
+
static { this.LABEL = ( localize2(6797, "Add to Watch")); }
|
|
331
331
|
constructor() {
|
|
332
332
|
super({
|
|
333
333
|
id: SelectionToWatchExpressionsAction.ID,
|
|
@@ -372,7 +372,7 @@ class ShowDebugHoverAction extends EditorAction {
|
|
|
372
372
|
constructor() {
|
|
373
373
|
super({
|
|
374
374
|
id: 'editor.debug.action.showDebugHover',
|
|
375
|
-
label: ( localize2(
|
|
375
|
+
label: ( localize2(6798, "Debug: Show Hover")),
|
|
376
376
|
precondition: CONTEXT_IN_DEBUG_MODE,
|
|
377
377
|
kbOpts: {
|
|
378
378
|
kbExpr: EditorContextKeys.editorTextFocus,
|
|
@@ -389,10 +389,10 @@ class ShowDebugHoverAction extends EditorAction {
|
|
|
389
389
|
return editor.getContribution(EDITOR_CONTRIBUTION_ID)?.showHover(position, true);
|
|
390
390
|
}
|
|
391
391
|
}
|
|
392
|
-
const NO_TARGETS_MESSAGE = ( localize(
|
|
392
|
+
const NO_TARGETS_MESSAGE = ( localize(6799, "Step targets are not available here"));
|
|
393
393
|
class StepIntoTargetsAction extends EditorAction {
|
|
394
394
|
static { this.ID = 'editor.debug.action.stepIntoTargets'; }
|
|
395
|
-
static { this.LABEL = ( localize(
|
|
395
|
+
static { this.LABEL = ( localize(6800, "Step Into Target")); }
|
|
396
396
|
constructor() {
|
|
397
397
|
super({
|
|
398
398
|
id: StepIntoTargetsAction.ID,
|
|
@@ -493,7 +493,7 @@ class GoToNextBreakpointAction extends GoToBreakpointAction {
|
|
|
493
493
|
constructor() {
|
|
494
494
|
super(true, {
|
|
495
495
|
id: 'editor.debug.action.goToNextBreakpoint',
|
|
496
|
-
label: ( localize2(
|
|
496
|
+
label: ( localize2(6801, "Debug: Go to Next Breakpoint")),
|
|
497
497
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE
|
|
498
498
|
});
|
|
499
499
|
}
|
|
@@ -502,7 +502,7 @@ class GoToPreviousBreakpointAction extends GoToBreakpointAction {
|
|
|
502
502
|
constructor() {
|
|
503
503
|
super(false, {
|
|
504
504
|
id: 'editor.debug.action.goToPreviousBreakpoint',
|
|
505
|
-
label: ( localize2(
|
|
505
|
+
label: ( localize2(6802, "Debug: Go to Previous Breakpoint")),
|
|
506
506
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE
|
|
507
507
|
});
|
|
508
508
|
}
|
|
@@ -511,7 +511,7 @@ class CloseExceptionWidgetAction extends EditorAction {
|
|
|
511
511
|
constructor() {
|
|
512
512
|
super({
|
|
513
513
|
id: 'editor.debug.action.closeExceptionWidget',
|
|
514
|
-
label: ( localize2(
|
|
514
|
+
label: ( localize2(6803, "Close Exception Widget")),
|
|
515
515
|
precondition: CONTEXT_EXCEPTION_WIDGET_VISIBLE,
|
|
516
516
|
kbOpts: {
|
|
517
517
|
primary: KeyCode.Escape,
|
|
@@ -16,7 +16,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
16
16
|
constructor(debugService, contextService, commandService, notificationService) {
|
|
17
17
|
super(DEBUG_QUICK_ACCESS_PREFIX, {
|
|
18
18
|
noResultsPick: {
|
|
19
|
-
label: ( localize(
|
|
19
|
+
label: ( localize(6866, "No matching launch configurations"))
|
|
20
20
|
}
|
|
21
21
|
});
|
|
22
22
|
this.debugService = debugService;
|
|
@@ -42,7 +42,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
42
42
|
highlights: { label: highlights },
|
|
43
43
|
buttons: [{
|
|
44
44
|
iconClass: ThemeIcon.asClassName(debugConfigure),
|
|
45
|
-
tooltip: ( localize(
|
|
45
|
+
tooltip: ( localize(6867, "Configure Launch Configuration"))
|
|
46
46
|
}],
|
|
47
47
|
trigger: () => {
|
|
48
48
|
config.launch.openConfigFile({ preserveFocus: false });
|
|
@@ -59,7 +59,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
59
59
|
}
|
|
60
60
|
};
|
|
61
61
|
if (selectedConfiguration.name === config.name && selectedConfiguration.launch === config.launch) {
|
|
62
|
-
const separator = { type: 'separator', label: ( localize(
|
|
62
|
+
const separator = { type: 'separator', label: ( localize(6868, 'Most Recent')) };
|
|
63
63
|
picks.unshift(separator, pick);
|
|
64
64
|
continue;
|
|
65
65
|
}
|
|
@@ -73,7 +73,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
73
73
|
const dynamicProviders = await configManager.getDynamicProviders();
|
|
74
74
|
if (dynamicProviders.length > 0) {
|
|
75
75
|
picks.push({
|
|
76
|
-
type: 'separator', label: ( localize(
|
|
76
|
+
type: 'separator', label: ( localize(6869, "contributed"))
|
|
77
77
|
});
|
|
78
78
|
}
|
|
79
79
|
configManager.getRecentDynamicConfigurations().forEach(({ name, type }) => {
|
|
@@ -84,7 +84,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
84
84
|
highlights: { label: highlights },
|
|
85
85
|
buttons: [{
|
|
86
86
|
iconClass: ThemeIcon.asClassName(debugRemoveConfig),
|
|
87
|
-
tooltip: ( localize(
|
|
87
|
+
tooltip: ( localize(6870, "Remove Launch Configuration"))
|
|
88
88
|
}],
|
|
89
89
|
trigger: () => {
|
|
90
90
|
configManager.removeRecentDynamicConfigurations(name, type);
|
|
@@ -107,7 +107,7 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
107
107
|
dynamicProviders.forEach(provider => {
|
|
108
108
|
picks.push({
|
|
109
109
|
label: `$(folder) ${provider.label}...`,
|
|
110
|
-
ariaLabel: ( localize(
|
|
110
|
+
ariaLabel: ( localize(6871, "{0} contributed configurations", provider.label)),
|
|
111
111
|
accept: async () => {
|
|
112
112
|
const pick = await provider.pick();
|
|
113
113
|
if (pick) {
|
|
@@ -119,12 +119,12 @@ let StartDebugQuickAccessProvider = class StartDebugQuickAccessProvider extends
|
|
|
119
119
|
});
|
|
120
120
|
const visibleLaunches = configManager.getLaunches().filter(launch => !launch.hidden);
|
|
121
121
|
if (visibleLaunches.length > 0) {
|
|
122
|
-
picks.push({ type: 'separator', label: ( localize(
|
|
122
|
+
picks.push({ type: 'separator', label: ( localize(6872, "configure")) });
|
|
123
123
|
}
|
|
124
124
|
for (const launch of visibleLaunches) {
|
|
125
125
|
const label = this.contextService.getWorkbenchState() === WorkbenchState.WORKSPACE ?
|
|
126
|
-
( localize(
|
|
127
|
-
( localize(
|
|
126
|
+
( localize(6873, "Add Config ({0})...", launch.name)) :
|
|
127
|
+
( localize(6874, "Add Configuration..."));
|
|
128
128
|
picks.push({
|
|
129
129
|
label,
|
|
130
130
|
description: this.contextService.getWorkbenchState() === WorkbenchState.WORKSPACE ? launch.name : '',
|
|
@@ -132,7 +132,7 @@ export declare class DebugService implements IDebugService {
|
|
|
132
132
|
enableOrDisableBreakpoints(enable: boolean, breakpoint?: IEnablement): Promise<void>;
|
|
133
133
|
addBreakpoints(uri: uri, rawBreakpoints: IBreakpointData[], ariaAnnounce?: boolean): Promise<IBreakpoint[]>;
|
|
134
134
|
updateBreakpoints(uri: uri, data: Map<string, IBreakpointUpdateData>, sendOnResourceSaved: boolean): Promise<void>;
|
|
135
|
-
removeBreakpoints(id?: string): Promise<void>;
|
|
135
|
+
removeBreakpoints(id?: string | string[]): Promise<void>;
|
|
136
136
|
setBreakpointsActivated(activated: boolean): Promise<void>;
|
|
137
137
|
addFunctionBreakpoint(opts?: IFunctionBreakpointOptions, id?: string): Promise<void>;
|
|
138
138
|
updateFunctionBreakpoint(id: string, update: {
|