@codingame/monaco-vscode-debug-service-override 21.6.0 → 22.0.1
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 +16 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +17 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +115 -114
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +24 -24
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +10 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +22 -22
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +67 -53
- 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.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +9 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/media/debugToolBar.css +8 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/media/debugViewlet.css +7 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +19 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +16 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +13 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +12 -11
- 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/debugVisualizers.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/replAccessibilityAnnouncer.js +5 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
|
@@ -30,9 +30,9 @@ var TaskRunResult;
|
|
|
30
30
|
TaskRunResult[TaskRunResult["Success"] = 1] = "Success";
|
|
31
31
|
})(TaskRunResult || (TaskRunResult = {}));
|
|
32
32
|
const DEBUG_TASK_ERROR_CHOICE_KEY = 'debug.taskerrorchoice';
|
|
33
|
-
const ABORT_LABEL = ( localize(
|
|
34
|
-
const DEBUG_ANYWAY_LABEL = ( localize(
|
|
35
|
-
const DEBUG_ANYWAY_LABEL_NO_MEMO = ( localize(
|
|
33
|
+
const ABORT_LABEL = ( localize(6477, "Abort"));
|
|
34
|
+
const DEBUG_ANYWAY_LABEL = ( localize(6478, "&&Debug Anyway"));
|
|
35
|
+
const DEBUG_ANYWAY_LABEL_NO_MEMO = ( localize(6479, "Debug Anyway"));
|
|
36
36
|
let DebugTaskRunner = class DebugTaskRunner {
|
|
37
37
|
constructor(taskService, markerService, configurationService, viewsService, dialogService, storageService, commandService, progressService) {
|
|
38
38
|
this.taskService = taskService;
|
|
@@ -74,17 +74,17 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
74
74
|
}
|
|
75
75
|
const taskLabel = typeof taskId === 'string' ? taskId : taskId ? taskId.name : '';
|
|
76
76
|
const message = errorCount > 1
|
|
77
|
-
? ( localize(
|
|
77
|
+
? ( localize(6480, "Errors exist after running preLaunchTask '{0}'.", taskLabel))
|
|
78
78
|
: errorCount === 1
|
|
79
|
-
? ( localize(
|
|
79
|
+
? ( localize(6481, "Error exists after running preLaunchTask '{0}'.", taskLabel))
|
|
80
80
|
: taskSummary && typeof taskSummary.exitCode === 'number'
|
|
81
81
|
? ( localize(
|
|
82
|
-
|
|
82
|
+
6482,
|
|
83
83
|
"The preLaunchTask '{0}' terminated with exit code {1}.",
|
|
84
84
|
taskLabel,
|
|
85
85
|
taskSummary.exitCode
|
|
86
86
|
))
|
|
87
|
-
: ( localize(
|
|
87
|
+
: ( localize(6483, "The preLaunchTask '{0}' terminated.", taskLabel));
|
|
88
88
|
let DebugChoice;
|
|
89
89
|
(function (DebugChoice) {
|
|
90
90
|
DebugChoice[DebugChoice["DebugAnyway"] = 1] = "DebugAnyway";
|
|
@@ -100,7 +100,7 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
100
100
|
run: () => DebugChoice.DebugAnyway
|
|
101
101
|
},
|
|
102
102
|
{
|
|
103
|
-
label: ( localize(
|
|
103
|
+
label: ( localize(6484, "&&Show Errors")),
|
|
104
104
|
run: () => DebugChoice.ShowErrors
|
|
105
105
|
}
|
|
106
106
|
],
|
|
@@ -109,7 +109,7 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
109
109
|
run: () => DebugChoice.Cancel
|
|
110
110
|
},
|
|
111
111
|
checkbox: {
|
|
112
|
-
label: ( localize(
|
|
112
|
+
label: ( localize(6485, "Remember my choice in user settings")),
|
|
113
113
|
}
|
|
114
114
|
});
|
|
115
115
|
const debugAnyway = result === DebugChoice.DebugAnyway;
|
|
@@ -145,7 +145,7 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
145
145
|
message: err.message,
|
|
146
146
|
buttons: [
|
|
147
147
|
{
|
|
148
|
-
label: ( localize(
|
|
148
|
+
label: ( localize(6478, "&&Debug Anyway")),
|
|
149
149
|
run: () => DebugChoice.DebugAnyway
|
|
150
150
|
},
|
|
151
151
|
{
|
|
@@ -157,7 +157,7 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
157
157
|
run: () => DebugChoice.Cancel
|
|
158
158
|
},
|
|
159
159
|
checkbox: {
|
|
160
|
-
label: ( localize(
|
|
160
|
+
label: ( localize(6486, "Remember my choice for this task"))
|
|
161
161
|
}
|
|
162
162
|
});
|
|
163
163
|
choice = result;
|
|
@@ -178,7 +178,7 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
178
178
|
}
|
|
179
179
|
if (!root) {
|
|
180
180
|
return Promise.reject(( new Error(( localize(
|
|
181
|
-
|
|
181
|
+
6487,
|
|
182
182
|
"Task '{0}' can not be referenced from a launch configuration that is in a different workspace folder.",
|
|
183
183
|
typeof taskId === 'string' ? taskId : taskId.type
|
|
184
184
|
)))));
|
|
@@ -186,8 +186,8 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
186
186
|
const task = await this.taskService.getTask(root, taskId);
|
|
187
187
|
if (!task) {
|
|
188
188
|
const errorMessage = typeof taskId === 'string'
|
|
189
|
-
? ( localize(
|
|
190
|
-
: ( localize(
|
|
189
|
+
? ( localize(6488, "Could not find the task '{0}'.", taskId))
|
|
190
|
+
: ( localize(6489, "Could not find the specified task."));
|
|
191
191
|
return Promise.reject(createErrorWithActions(errorMessage, [( new Action(
|
|
192
192
|
DEBUG_CONFIGURE_COMMAND_ID,
|
|
193
193
|
DEBUG_CONFIGURE_LABEL,
|
|
@@ -245,7 +245,7 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
245
245
|
store.add(disposableTimeout(() => {
|
|
246
246
|
if (!taskStarted) {
|
|
247
247
|
const errorMessage = ( localize(
|
|
248
|
-
|
|
248
|
+
6490,
|
|
249
249
|
"The task '{0}' has not exited and doesn't have a 'problemMatcher' defined. Make sure to define a problem matcher for watch tasks.",
|
|
250
250
|
typeof taskId === 'string' ? taskId : JSON.stringify(taskId)
|
|
251
251
|
));
|
|
@@ -256,14 +256,14 @@ let DebugTaskRunner = class DebugTaskRunner {
|
|
|
256
256
|
if (!hideSlowPreLaunchWarning) {
|
|
257
257
|
store.add(disposableTimeout(() => {
|
|
258
258
|
const message = ( localize(
|
|
259
|
-
|
|
259
|
+
6491,
|
|
260
260
|
"Waiting for preLaunchTask '{0}'...",
|
|
261
261
|
task.configurationProperties.name
|
|
262
262
|
));
|
|
263
263
|
const buttons = [DEBUG_ANYWAY_LABEL_NO_MEMO, ABORT_LABEL];
|
|
264
264
|
const canConfigure = task instanceof CustomTask || task instanceof ConfiguringTask;
|
|
265
265
|
if (canConfigure) {
|
|
266
|
-
buttons.splice(1, 0, ( localize(
|
|
266
|
+
buttons.splice(1, 0, ( localize(6492, "Configure Task")));
|
|
267
267
|
}
|
|
268
268
|
this.progressService.withProgress({ location: ProgressLocation.Notification, title: message, buttons }, () => result.catch(() => { }), (choice) => {
|
|
269
269
|
if (choice === undefined) ;
|
|
@@ -312,7 +312,7 @@ function createDisconnectMenuItemAction(action, disposables, accessor, options)
|
|
|
312
312
|
if (!secondary.length) {
|
|
313
313
|
return undefined;
|
|
314
314
|
}
|
|
315
|
-
const dropdownAction = disposables.add(( new Action('notebook.moreRunActions', ( localize(
|
|
315
|
+
const dropdownAction = disposables.add(( new Action('notebook.moreRunActions', ( localize(6493, "More...")), 'codicon-chevron-down', true)));
|
|
316
316
|
const item = instantiationService.createInstance(DropdownWithPrimaryActionViewItem, action, dropdownAction, secondary, 'debug-stop-actions', options);
|
|
317
317
|
return item;
|
|
318
318
|
}
|
|
@@ -370,8 +370,8 @@ registerDebugToolBarItem(STEP_OVER_ID, STEP_OVER_LABEL, 20, debugStepOver, undef
|
|
|
370
370
|
registerDebugToolBarItem(STEP_INTO_ID, STEP_INTO_LABEL, 30, debugStepInto, undefined, ( CONTEXT_DEBUG_STATE.isEqualTo('stopped')));
|
|
371
371
|
registerDebugToolBarItem(STEP_OUT_ID, STEP_OUT_LABEL, 40, debugStepOut, undefined, ( CONTEXT_DEBUG_STATE.isEqualTo('stopped')));
|
|
372
372
|
registerDebugToolBarItem(RESTART_SESSION_ID, RESTART_LABEL, 60, debugRestart);
|
|
373
|
-
registerDebugToolBarItem(STEP_BACK_ID, ( localize(
|
|
374
|
-
registerDebugToolBarItem(REVERSE_CONTINUE_ID, ( localize(
|
|
373
|
+
registerDebugToolBarItem(STEP_BACK_ID, ( localize(6494, "Step Back")), 50, debugStepBack, CONTEXT_STEP_BACK_SUPPORTED, ( CONTEXT_DEBUG_STATE.isEqualTo('stopped')));
|
|
374
|
+
registerDebugToolBarItem(REVERSE_CONTINUE_ID, ( localize(6495, "Reverse")), 55, debugReverseContinue, CONTEXT_STEP_BACK_SUPPORTED, ( CONTEXT_DEBUG_STATE.isEqualTo('stopped')));
|
|
375
375
|
registerDebugToolBarItem(FOCUS_SESSION_ID, FOCUS_SESSION_LABEL, 100, Codicon.listTree, ( ContextKeyExpr.and(CONTEXT_MULTI_SESSION_DEBUG, ( CONTEXT_TOOLBAR_COMMAND_CENTER.negate()))));
|
|
376
376
|
MenuRegistry.appendMenuItem(MenuId.DebugToolBarStop, {
|
|
377
377
|
group: 'navigation',
|
|
@@ -11,8 +11,8 @@ import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform
|
|
|
11
11
|
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
12
12
|
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
13
13
|
import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
|
|
14
|
-
import { ViewPane } from "@codingame/monaco-vscode-
|
|
15
|
-
import { ViewPaneContainer } from "@codingame/monaco-vscode-
|
|
14
|
+
import { ViewPane } from "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane";
|
|
15
|
+
import { ViewPaneContainer } from "@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common/vscode/vs/workbench/browser/parts/views/viewPaneContainer";
|
|
16
16
|
import { IViewDescriptorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service";
|
|
17
17
|
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
18
18
|
import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
@@ -17,7 +17,7 @@ import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform
|
|
|
17
17
|
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
18
18
|
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
19
19
|
import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
|
|
20
|
-
import { ViewPaneContainer, ViewsSubMenu } from '@codingame/monaco-vscode-
|
|
20
|
+
import { ViewPaneContainer, ViewsSubMenu } from '@codingame/monaco-vscode-a8d3bd74-e63e-5327-96e8-4f931661e329-common/vscode/vs/workbench/browser/parts/views/viewPaneContainer';
|
|
21
21
|
import { WorkbenchStateContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
|
|
22
22
|
import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
|
|
23
23
|
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
@@ -171,10 +171,10 @@ registerAction2(class extends Action2 {
|
|
|
171
171
|
title: {
|
|
172
172
|
value: DEBUG_CONFIGURE_LABEL,
|
|
173
173
|
original: 'Open \'launch.json\'',
|
|
174
|
-
mnemonicTitle: ( localize(
|
|
174
|
+
mnemonicTitle: ( localize(6496, "Open &&Configurations"))
|
|
175
175
|
},
|
|
176
176
|
metadata: {
|
|
177
|
-
description: ( localize2(
|
|
177
|
+
description: ( localize2(6497, 'Opens the file used to configure how your program is debugged'))
|
|
178
178
|
},
|
|
179
179
|
f1: true,
|
|
180
180
|
icon: debugConfigure,
|
|
@@ -214,7 +214,7 @@ registerAction2(class extends Action2 {
|
|
|
214
214
|
const picked = await quickInputService.pick(picks, {
|
|
215
215
|
activeItem: picks[0],
|
|
216
216
|
placeHolder: ( localize(
|
|
217
|
-
|
|
217
|
+
6498,
|
|
218
218
|
"Select a workspace folder to create a launch.json file in or add it to the workspace config file"
|
|
219
219
|
))
|
|
220
220
|
});
|
|
@@ -238,7 +238,7 @@ registerAction2(class extends Action2 {
|
|
|
238
238
|
constructor() {
|
|
239
239
|
super({
|
|
240
240
|
id: 'debug.toggleReplIgnoreFocus',
|
|
241
|
-
title: ( localize(
|
|
241
|
+
title: ( localize(6499, "Debug Console")),
|
|
242
242
|
toggled: ( ContextKeyExpr.has(`view.${REPL_VIEW_ID}.visible`)),
|
|
243
243
|
menu: [{
|
|
244
244
|
id: ViewsSubMenu,
|
|
@@ -263,7 +263,7 @@ MenuRegistry.appendMenuItem(MenuId.ViewContainerTitle, {
|
|
|
263
263
|
order: 10,
|
|
264
264
|
command: {
|
|
265
265
|
id: SELECT_AND_START_ID,
|
|
266
|
-
title: ( localize(
|
|
266
|
+
title: ( localize(6500, "Start Additional Session")),
|
|
267
267
|
}
|
|
268
268
|
});
|
|
269
269
|
|
|
@@ -6,7 +6,7 @@ import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/pl
|
|
|
6
6
|
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
7
7
|
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
8
8
|
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
9
|
-
import { EditorPane } from "@codingame/monaco-vscode-
|
|
9
|
+
import { EditorPane } from "@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common/vscode/vs/workbench/browser/parts/editor/editorPane";
|
|
10
10
|
import { IWorkbenchContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions";
|
|
11
11
|
import { IDebugSession } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
12
12
|
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
@@ -36,7 +36,7 @@ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quic
|
|
|
36
36
|
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
37
37
|
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
38
38
|
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
39
|
-
import { EditorPane } from '@codingame/monaco-vscode-
|
|
39
|
+
import { EditorPane } from '@codingame/monaco-vscode-60014c9d-b815-501d-83a9-4b08725c2ec2-common/vscode/vs/workbench/browser/parts/editor/editorPane';
|
|
40
40
|
import { topStackFrameColor, focusedStackFrameColor } from '@codingame/monaco-vscode-b99aef83-0d60-5e8c-a62e-9908b6256f35-common/vscode/vs/workbench/contrib/debug/browser/callStackEditorContribution';
|
|
41
41
|
import { breakpoint, debugBreakpointHint, debugStackframe, debugStackframeFocused } from '@codingame/monaco-vscode-09e9b2e8-42a8-5a68-864f-bfcdad0ca1df-common/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
42
42
|
import { DISASSEMBLY_VIEW_ID, State, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
@@ -64,7 +64,7 @@ const disassemblyNotAvailable = {
|
|
|
64
64
|
address: 0n,
|
|
65
65
|
instruction: {
|
|
66
66
|
address: '-1',
|
|
67
|
-
instruction: ( localize(
|
|
67
|
+
instruction: ( localize(6501, "Disassembly not available."))
|
|
68
68
|
},
|
|
69
69
|
};
|
|
70
70
|
let DisassemblyView = class DisassemblyView extends EditorPane {
|
|
@@ -182,7 +182,7 @@ let DisassemblyView = class DisassemblyView extends EditorPane {
|
|
|
182
182
|
project(row) { return row; }
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
|
-
label: ( localize(
|
|
185
|
+
label: ( localize(6502, "instructions")),
|
|
186
186
|
tooltip: '',
|
|
187
187
|
weight: 0.3,
|
|
188
188
|
templateId: InstructionRenderer.TEMPLATE_ID,
|
|
@@ -732,7 +732,7 @@ let InstructionRenderer = class InstructionRenderer extends Disposable {
|
|
|
732
732
|
};
|
|
733
733
|
this.editorService.openEditor({
|
|
734
734
|
resource: sourceURI,
|
|
735
|
-
description: ( localize(
|
|
735
|
+
description: ( localize(6503, "from disassembly")),
|
|
736
736
|
options: {
|
|
737
737
|
preserveFocus: false,
|
|
738
738
|
selection: selection,
|
|
@@ -767,18 +767,18 @@ InstructionRenderer = InstructionRenderer_1 = ( __decorate([
|
|
|
767
767
|
], InstructionRenderer));
|
|
768
768
|
class AccessibilityProvider {
|
|
769
769
|
getWidgetAriaLabel() {
|
|
770
|
-
return localize(
|
|
770
|
+
return localize(6504, "Disassembly View");
|
|
771
771
|
}
|
|
772
772
|
getAriaLabel(element) {
|
|
773
773
|
let label = '';
|
|
774
774
|
const instruction = element.instruction;
|
|
775
775
|
if (instruction.address !== '-1') {
|
|
776
|
-
label += `${( localize(
|
|
776
|
+
label += `${( localize(6505, "Address"))}: ${instruction.address}`;
|
|
777
777
|
}
|
|
778
778
|
if (instruction.instructionBytes) {
|
|
779
|
-
label += `, ${( localize(
|
|
779
|
+
label += `, ${( localize(6506, "Bytes"))}: ${instruction.instructionBytes}`;
|
|
780
780
|
}
|
|
781
|
-
label += `, ${( localize(
|
|
781
|
+
label += `, ${( localize(6507, "Instruction"))}: ${instruction.instruction}`;
|
|
782
782
|
return label;
|
|
783
783
|
}
|
|
784
784
|
}
|
|
@@ -8,7 +8,7 @@ import { ILabelService } from "@codingame/monaco-vscode-api/vscode/vs/platform/l
|
|
|
8
8
|
import { IOpenerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service";
|
|
9
9
|
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
10
10
|
import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
|
|
11
|
-
import { ViewPane } from "@codingame/monaco-vscode-
|
|
11
|
+
import { ViewPane } from "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane";
|
|
12
12
|
import { IViewletViewOptions } from "@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common/vscode/vs/workbench/browser/parts/views/viewsViewlet";
|
|
13
13
|
import { IViewDescriptorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service";
|
|
14
14
|
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
@@ -26,8 +26,8 @@ import { WorkbenchCompressibleObjectTree } from '@codingame/monaco-vscode-api/vs
|
|
|
26
26
|
import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
|
|
27
27
|
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
28
28
|
import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
|
|
29
|
-
import { ResourceLabels } from '@codingame/monaco-vscode-
|
|
30
|
-
import { ViewPane, ViewAction } from '@codingame/monaco-vscode-
|
|
29
|
+
import { ResourceLabels } from '@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common/vscode/vs/workbench/browser/labels';
|
|
30
|
+
import { ViewPane, ViewAction } from '@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane';
|
|
31
31
|
import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
|
|
32
32
|
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
33
33
|
import { IPathService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/path/common/pathService.service';
|
|
@@ -563,7 +563,7 @@ class LoadedScriptsRenderer {
|
|
|
563
563
|
options.fileKind = FileKind.ROOT_FOLDER;
|
|
564
564
|
}
|
|
565
565
|
else if (element instanceof SessionTreeItem) {
|
|
566
|
-
options.title = ( localize(
|
|
566
|
+
options.title = ( localize(6519, "Debug Session"));
|
|
567
567
|
options.hideIcon = true;
|
|
568
568
|
}
|
|
569
569
|
else if (element instanceof BaseTreeItem) {
|
|
@@ -585,20 +585,20 @@ class LoadedScriptsRenderer {
|
|
|
585
585
|
}
|
|
586
586
|
class LoadedSciptsAccessibilityProvider {
|
|
587
587
|
getWidgetAriaLabel() {
|
|
588
|
-
return localize(
|
|
588
|
+
return localize(6520, "Debug Loaded Scripts");
|
|
589
589
|
}
|
|
590
590
|
getAriaLabel(element) {
|
|
591
591
|
if (element instanceof RootFolderTreeItem) {
|
|
592
|
-
return localize(
|
|
592
|
+
return localize(6521, "Workspace folder {0}, loaded script, debug", element.getLabel());
|
|
593
593
|
}
|
|
594
594
|
if (element instanceof SessionTreeItem) {
|
|
595
|
-
return localize(
|
|
595
|
+
return localize(6522, "Session {0}, loaded script, debug", element.getLabel());
|
|
596
596
|
}
|
|
597
597
|
if (element.hasChildren()) {
|
|
598
|
-
return localize(
|
|
598
|
+
return localize(6523, "Folder {0}, loaded script, debug", element.getLabel());
|
|
599
599
|
}
|
|
600
600
|
else {
|
|
601
|
-
return localize(
|
|
601
|
+
return localize(6524, "{0}, loaded script, debug", element.getLabel());
|
|
602
602
|
}
|
|
603
603
|
}
|
|
604
604
|
}
|
|
@@ -625,7 +625,7 @@ registerAction2(class Collapse extends ViewAction {
|
|
|
625
625
|
super({
|
|
626
626
|
id: 'loadedScripts.collapse',
|
|
627
627
|
viewId: LOADED_SCRIPTS_VIEW_ID,
|
|
628
|
-
title: ( localize(
|
|
628
|
+
title: ( localize(6525, "Collapse All")),
|
|
629
629
|
f1: false,
|
|
630
630
|
icon: Codicon.collapseAll,
|
|
631
631
|
menu: {
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
.monaco-workbench .debug-toolbar {
|
|
7
7
|
position: absolute;
|
|
8
8
|
z-index: 2520; /* Below quick input at 2550, above custom titlebar toolbar at 2500 */
|
|
9
|
-
height:
|
|
9
|
+
height: 28px;
|
|
10
10
|
display: flex;
|
|
11
|
-
padding-left:
|
|
12
|
-
border-radius:
|
|
11
|
+
padding-left: 2px;
|
|
12
|
+
border-radius: 5px;
|
|
13
13
|
left: 0;
|
|
14
14
|
top: 0;
|
|
15
15
|
-webkit-app-region: no-drag;
|
|
@@ -20,17 +20,19 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
.monaco-workbench .debug-toolbar .monaco-action-bar .action-item.select-container {
|
|
23
|
-
margin-right:
|
|
23
|
+
margin-right: 2px;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
.monaco-workbench .debug-toolbar .monaco-action-bar .action-item.select-container .monaco-select-box,
|
|
27
27
|
.monaco-workbench .start-debug-action-item .select-container .monaco-select-box {
|
|
28
|
-
padding: 0
|
|
28
|
+
padding: 0 24px 0 8px;
|
|
29
|
+
text-overflow: ellipsis;
|
|
30
|
+
white-space: nowrap;
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
.monaco-workbench .debug-toolbar .drag-area {
|
|
32
34
|
cursor: grab;
|
|
33
|
-
width:
|
|
35
|
+
width: 20px;
|
|
34
36
|
opacity: 0.5;
|
|
35
37
|
display: flex;
|
|
36
38
|
align-items: center;
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
.monaco-workbench.mac .part > .title > .title-actions .start-debug-action-item {
|
|
36
|
-
border-radius:
|
|
36
|
+
border-radius: 5px;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
.monaco-workbench .part > .title > .title-actions .start-debug-action-item .codicon {
|
|
@@ -43,8 +43,9 @@
|
|
|
43
43
|
|
|
44
44
|
.monaco-workbench .part > .title > .title-actions .start-debug-action-item .codicon-debug-start {
|
|
45
45
|
width: 18px;
|
|
46
|
-
height:
|
|
47
|
-
padding-left:
|
|
46
|
+
height: 22px;
|
|
47
|
+
padding-left: 3px;
|
|
48
|
+
padding-right: 1px
|
|
48
49
|
}
|
|
49
50
|
|
|
50
51
|
.monaco-workbench .monaco-action-bar .start-debug-action-item .configuration .monaco-select-box {
|
|
@@ -57,6 +58,9 @@
|
|
|
57
58
|
|
|
58
59
|
/* The debug view title is crowded, let this one get narrower than others */
|
|
59
60
|
min-width: 90px;
|
|
61
|
+
|
|
62
|
+
white-space: nowrap;
|
|
63
|
+
text-overflow: ellipsis;
|
|
60
64
|
}
|
|
61
65
|
|
|
62
66
|
|
|
@@ -194,7 +194,7 @@ let RawDebugSession = class RawDebugSession {
|
|
|
194
194
|
}
|
|
195
195
|
async start() {
|
|
196
196
|
if (!this.debugAdapter) {
|
|
197
|
-
return Promise.reject(( new Error(( localize(
|
|
197
|
+
return Promise.reject(( new Error(( localize(6526, "No debug adapter, can not start debug session.")))));
|
|
198
198
|
}
|
|
199
199
|
await this.debugAdapter.startSession();
|
|
200
200
|
this.startTime = ( new Date()).getTime();
|
|
@@ -518,10 +518,10 @@ let RawDebugSession = class RawDebugSession {
|
|
|
518
518
|
const { confirmed } = await this.dialogSerivce.confirm({
|
|
519
519
|
type: Severity.Warning,
|
|
520
520
|
message: ( localize(
|
|
521
|
-
|
|
521
|
+
6527,
|
|
522
522
|
"The debugger needs to open a new tab or window for the debuggee but the browser prevented this. You must give permission to continue."
|
|
523
523
|
)),
|
|
524
|
-
primaryButton: ( localize(
|
|
524
|
+
primaryButton: ( localize(6528, "&&Continue"))
|
|
525
525
|
});
|
|
526
526
|
if (confirmed) {
|
|
527
527
|
result = await this.launchVsCode(request.arguments);
|
|
@@ -621,7 +621,7 @@ let RawDebugSession = class RawDebugSession {
|
|
|
621
621
|
completeDispatch(undefined);
|
|
622
622
|
}
|
|
623
623
|
else {
|
|
624
|
-
errorDispatch(( new Error(( localize(
|
|
624
|
+
errorDispatch(( new Error(( localize(6529, "No debugger available found. Can not send '{0}'.", command)))));
|
|
625
625
|
}
|
|
626
626
|
return;
|
|
627
627
|
}
|
|
@@ -654,7 +654,7 @@ let RawDebugSession = class RawDebugSession {
|
|
|
654
654
|
const userMessage = error ? formatPII(error.format, false, error.variables) : errorMessage;
|
|
655
655
|
const url = error?.url;
|
|
656
656
|
if (error && url) {
|
|
657
|
-
const label = error.urlLabel ? error.urlLabel : ( localize(
|
|
657
|
+
const label = error.urlLabel ? error.urlLabel : ( localize(6530, "More Info"));
|
|
658
658
|
const uri = ( URI.parse(url));
|
|
659
659
|
const actionId = uri.scheme === Schemas.command ? 'debug.moreInfo.command' : 'debug.moreInfo';
|
|
660
660
|
return createErrorWithActions(userMessage, [toAction({ id: actionId, label, run: () => this.openerService.open(uri, { allowCommands: true }) })]);
|
|
@@ -18,7 +18,7 @@ import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log
|
|
|
18
18
|
import { IOpenerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service";
|
|
19
19
|
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
20
20
|
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
21
|
-
import { FilterViewPane, IViewPaneOptions } from "@codingame/monaco-vscode-
|
|
21
|
+
import { FilterViewPane, IViewPaneOptions } from "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane";
|
|
22
22
|
import { IViewDescriptorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service";
|
|
23
23
|
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
24
24
|
import { IViewsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service";
|
|
@@ -62,7 +62,7 @@ import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quic
|
|
|
62
62
|
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
63
63
|
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
64
64
|
import { registerNavigableContainer } from '@codingame/monaco-vscode-e39a1c8f-7892-5d9b-9987-7b10b79e1a0a-common/vscode/vs/workbench/browser/actions/widgetNavigationCommands';
|
|
65
|
-
import { FilterViewPane, ViewAction } from '@codingame/monaco-vscode-
|
|
65
|
+
import { FilterViewPane, ViewAction } from '@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane';
|
|
66
66
|
import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
|
|
67
67
|
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
68
68
|
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
@@ -102,7 +102,7 @@ let Repl = class Repl extends FilterViewPane {
|
|
|
102
102
|
super({
|
|
103
103
|
...options,
|
|
104
104
|
filterOptions: {
|
|
105
|
-
placeholder: ( localize(
|
|
105
|
+
placeholder: ( localize(6531, "Filter (e.g. text, !exclude, \\escape)")),
|
|
106
106
|
text: filterText,
|
|
107
107
|
history: JSON.parse(storageService.get(FILTER_HISTORY_STORAGE_KEY, StorageScope.WORKSPACE, '[]')),
|
|
108
108
|
}
|
|
@@ -507,7 +507,7 @@ let Repl = class Repl extends FilterViewPane {
|
|
|
507
507
|
await autoExpandElements(session.getReplElements());
|
|
508
508
|
}
|
|
509
509
|
const { total, filtered } = this.getFilterStats();
|
|
510
|
-
this.filterWidget.updateBadge(total === filtered || total === 0 ? undefined : ( localize(
|
|
510
|
+
this.filterWidget.updateBadge(total === filtered || total === 0 ? undefined : ( localize(6532, "Showing {0} of {1}", filtered, total)));
|
|
511
511
|
}, Repl_1.REFRESH_DELAY));
|
|
512
512
|
}
|
|
513
513
|
render() {
|
|
@@ -631,17 +631,17 @@ let Repl = class Repl extends FilterViewPane {
|
|
|
631
631
|
this._register(addStandardDisposableListener(this.replInputContainer, EventType.BLUR, () => this.replInputContainer.classList.remove('synthetic-focus')));
|
|
632
632
|
}
|
|
633
633
|
getAriaLabel() {
|
|
634
|
-
let ariaLabel = ( localize(
|
|
634
|
+
let ariaLabel = ( localize(6533, "Debug Console"));
|
|
635
635
|
if (!this.configurationService.getValue(AccessibilityVerbositySettingId.Debug)) {
|
|
636
636
|
return ariaLabel;
|
|
637
637
|
}
|
|
638
638
|
const keybinding = this.keybindingService.lookupKeybinding(AccessibilityCommandId.OpenAccessibilityHelp)?.getAriaLabel();
|
|
639
639
|
if (keybinding) {
|
|
640
|
-
ariaLabel = ( localize(
|
|
640
|
+
ariaLabel = ( localize(6534, "{0}, use ({1}) for accessibility help", ariaLabel, keybinding));
|
|
641
641
|
}
|
|
642
642
|
else {
|
|
643
643
|
ariaLabel = ( localize(
|
|
644
|
-
|
|
644
|
+
6535,
|
|
645
645
|
"{0}, run the command Open Accessibility Help which is currently not triggerable via keybinding.",
|
|
646
646
|
ariaLabel
|
|
647
647
|
));
|
|
@@ -680,7 +680,7 @@ let Repl = class Repl extends FilterViewPane {
|
|
|
680
680
|
},
|
|
681
681
|
renderOptions: {
|
|
682
682
|
after: {
|
|
683
|
-
contentText: ( localize(
|
|
683
|
+
contentText: ( localize(6536, "Please start a debug session to evaluate expressions")),
|
|
684
684
|
color: transparentForeground ? ( transparentForeground.toString()) : undefined
|
|
685
685
|
}
|
|
686
686
|
}
|
|
@@ -792,7 +792,7 @@ class AcceptReplInputAction extends EditorAction {
|
|
|
792
792
|
constructor() {
|
|
793
793
|
super({
|
|
794
794
|
id: 'repl.action.acceptInput',
|
|
795
|
-
label: ( localize2(
|
|
795
|
+
label: ( localize2(6537, "Debug Console: Accept Input")),
|
|
796
796
|
precondition: CONTEXT_IN_DEBUG_REPL,
|
|
797
797
|
kbOpts: {
|
|
798
798
|
kbExpr: EditorContextKeys.textInputFocus,
|
|
@@ -812,7 +812,7 @@ class FilterReplAction extends ViewAction {
|
|
|
812
812
|
super({
|
|
813
813
|
viewId: REPL_VIEW_ID,
|
|
814
814
|
id: 'repl.action.filter',
|
|
815
|
-
title: ( localize(
|
|
815
|
+
title: ( localize(6538, "Debug Console: Focus Filter")),
|
|
816
816
|
precondition: CONTEXT_IN_DEBUG_REPL,
|
|
817
817
|
keybinding: [{
|
|
818
818
|
when: EditorContextKeys.textInputFocus,
|
|
@@ -830,7 +830,7 @@ class FindReplAction extends ViewAction {
|
|
|
830
830
|
super({
|
|
831
831
|
viewId: REPL_VIEW_ID,
|
|
832
832
|
id: 'repl.action.find',
|
|
833
|
-
title: ( localize(
|
|
833
|
+
title: ( localize(6539, "Debug Console: Focus Find")),
|
|
834
834
|
precondition: CONTEXT_IN_DEBUG_REPL,
|
|
835
835
|
keybinding: [{
|
|
836
836
|
when: ( ContextKeyExpr.or(CONTEXT_IN_DEBUG_REPL, ( ContextKeyExpr.equals('focusedView', 'workbench.panel.repl.view')))),
|
|
@@ -858,7 +858,7 @@ class ReplCopyAllAction extends EditorAction {
|
|
|
858
858
|
constructor() {
|
|
859
859
|
super({
|
|
860
860
|
id: 'repl.action.copyAll',
|
|
861
|
-
label: ( localize(
|
|
861
|
+
label: ( localize(6540, "Debug: Console Copy All")),
|
|
862
862
|
alias: 'Debug Console Copy All',
|
|
863
863
|
precondition: CONTEXT_IN_DEBUG_REPL,
|
|
864
864
|
});
|
|
@@ -895,7 +895,7 @@ registerAction2(class extends ViewAction {
|
|
|
895
895
|
super({
|
|
896
896
|
id: selectReplCommandId,
|
|
897
897
|
viewId: REPL_VIEW_ID,
|
|
898
|
-
title: ( localize(
|
|
898
|
+
title: ( localize(6541, "Select Debug Console")),
|
|
899
899
|
f1: false,
|
|
900
900
|
menu: {
|
|
901
901
|
id: MenuId.ViewTitle,
|
|
@@ -924,9 +924,9 @@ registerAction2(class extends ViewAction {
|
|
|
924
924
|
super({
|
|
925
925
|
id: 'workbench.debug.panel.action.clearReplAction',
|
|
926
926
|
viewId: REPL_VIEW_ID,
|
|
927
|
-
title: ( localize2(
|
|
927
|
+
title: ( localize2(6542, 'Clear Console')),
|
|
928
928
|
metadata: {
|
|
929
|
-
description: ( localize2(
|
|
929
|
+
description: ( localize2(6543, 'Clears all program output from your debug REPL'))
|
|
930
930
|
},
|
|
931
931
|
f1: true,
|
|
932
932
|
icon: debugConsoleClearAll,
|
|
@@ -958,7 +958,7 @@ registerAction2(class extends ViewAction {
|
|
|
958
958
|
constructor() {
|
|
959
959
|
super({
|
|
960
960
|
id: 'debug.collapseRepl',
|
|
961
|
-
title: ( localize(
|
|
961
|
+
title: ( localize(6544, "Collapse All")),
|
|
962
962
|
viewId: REPL_VIEW_ID,
|
|
963
963
|
menu: {
|
|
964
964
|
id: MenuId.DebugConsoleContext,
|
|
@@ -976,7 +976,7 @@ registerAction2(class extends ViewAction {
|
|
|
976
976
|
constructor() {
|
|
977
977
|
super({
|
|
978
978
|
id: 'debug.replPaste',
|
|
979
|
-
title: ( localize(
|
|
979
|
+
title: ( localize(6545, "Paste")),
|
|
980
980
|
viewId: REPL_VIEW_ID,
|
|
981
981
|
precondition: ( CONTEXT_DEBUG_STATE.notEqualsTo(getStateLabel(State.Inactive))),
|
|
982
982
|
menu: {
|
|
@@ -1006,7 +1006,7 @@ registerAction2(class extends ViewAction {
|
|
|
1006
1006
|
constructor() {
|
|
1007
1007
|
super({
|
|
1008
1008
|
id: 'workbench.debug.action.copyAll',
|
|
1009
|
-
title: ( localize(
|
|
1009
|
+
title: ( localize(6546, "Copy All")),
|
|
1010
1010
|
viewId: REPL_VIEW_ID,
|
|
1011
1011
|
menu: {
|
|
1012
1012
|
id: MenuId.DebugConsoleContext,
|
|
@@ -1024,7 +1024,7 @@ registerAction2(class extends Action2 {
|
|
|
1024
1024
|
constructor() {
|
|
1025
1025
|
super({
|
|
1026
1026
|
id: 'debug.replCopy',
|
|
1027
|
-
title: ( localize(
|
|
1027
|
+
title: ( localize(6547, "Copy")),
|
|
1028
1028
|
menu: {
|
|
1029
1029
|
id: MenuId.DebugConsoleContext,
|
|
1030
1030
|
group: '2_cutcopypaste',
|
|
@@ -1067,7 +1067,7 @@ registerAction2(class extends Action2 {
|
|
|
1067
1067
|
super({
|
|
1068
1068
|
id: FOCUS_REPL_ID,
|
|
1069
1069
|
category: DEBUG_COMMAND_CATEGORY,
|
|
1070
|
-
title: ( localize2(
|
|
1070
|
+
title: ( localize2(6548, "Focus on Debug Console View")),
|
|
1071
1071
|
});
|
|
1072
1072
|
}
|
|
1073
1073
|
async run(accessor) {
|