@codingame/monaco-vscode-debug-service-override 12.0.1 → 13.1.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/index.d.ts +1 -1
- package/index.js +6 -6
- package/package.json +17 -32
- package/service-override/tools/debugAssets.js +1 -1
- package/vscode/src/vs/platform/debug/common/extensionHostDebugIpc.d.ts +5 -5
- package/vscode/src/vs/platform/debug/common/extensionHostDebugIpc.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.d.ts +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +19 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.d.ts +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +62 -62
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +127 -127
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.d.ts +11 -11
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +40 -40
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.d.ts +17 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +38 -38
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.d.ts +15 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +39 -39
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +47 -47
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.d.ts +13 -13
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +57 -57
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.d.ts +10 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +39 -39
- package/vscode/src/vs/workbench/contrib/debug/browser/debugMemory.d.ts +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/debugMemory.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/debugProgress.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugProgress.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +17 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.d.ts +26 -26
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +65 -65
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.d.ts +24 -24
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +82 -82
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSettingMigration.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.d.ts +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +38 -38
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTitle.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTitle.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.d.ts +16 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +47 -47
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.d.ts +18 -18
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +28 -28
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.d.ts +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +48 -48
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +28 -28
- package/vscode/src/vs/workbench/contrib/debug/browser/extensionHostDebugService.d.ts +9 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/extensionHostDebugService.js +15 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.d.ts +16 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +40 -40
- package/vscode/src/vs/workbench/contrib/debug/browser/media/debug.contribution.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/media/debugHover.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/media/debugToolBar.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/media/debugViewlet.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/media/exceptionWidget.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/media/repl.css.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.d.ts +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +22 -22
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.d.ts +26 -26
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +86 -86
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.d.ts +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibleView.d.ts +9 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibleView.js +9 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/replFilter.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/replFilter.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.d.ts +15 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +24 -24
- package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.d.ts +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +27 -27
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.d.ts +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +25 -25
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.d.ts +23 -23
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +47 -47
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.d.ts +19 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +32 -32
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.d.ts +15 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +30 -30
- package/vscode/src/vs/workbench/contrib/debug/common/breakpoints.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/breakpoints.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugAccessibilityAnnouncer.d.ts +6 -6
- package/vscode/src/vs/workbench/contrib/debug/common/debugAccessibilityAnnouncer.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/common/debugCompoundRoot.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugCompoundRoot.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.d.ts +8 -8
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +17 -17
- package/vscode/src/vs/workbench/contrib/debug/common/debugContext.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +9 -9
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +50 -50
- package/vscode/src/vs/workbench/contrib/debug/common/debugStorage.d.ts +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/debugStorage.js +16 -16
- package/vscode/src/vs/workbench/contrib/debug/common/debugTelemetry.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/debugTelemetry.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/debugViewModel.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugViewModel.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.d.ts +10 -10
- package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.js +10 -10
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.d.ts +12 -12
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +27 -27
- package/vscode/src/vs/workbench/contrib/debug/common/replAccessibilityAnnouncer.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/debug/common/replAccessibilityAnnouncer.js +5 -5
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +9 -9
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ICodeEditor } from "vscode/vscode/vs/editor/browser/editorBrowser";
|
|
2
|
-
import { EditorAction } from "vscode/vscode/vs/editor/browser/editorExtensions";
|
|
3
|
-
import { ILocalizedString } from "vscode/vscode/vs/platform/action/common/action";
|
|
4
|
-
import { ServicesAccessor } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
1
|
+
import { ICodeEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
|
|
2
|
+
import { EditorAction } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorExtensions";
|
|
3
|
+
import { ILocalizedString } from "@codingame/monaco-vscode-api/vscode/vs/platform/action/common/action";
|
|
4
|
+
import { ServicesAccessor } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
5
5
|
export declare class RunToCursorAction extends EditorAction {
|
|
6
6
|
static readonly ID = "editor.debug.action.runToCursor";
|
|
7
7
|
static readonly LABEL: ILocalizedString;
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
|
|
2
|
-
import { getDomNodePagePosition } from 'vscode/vscode/vs/base/browser/dom';
|
|
3
|
-
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
4
|
-
import { KeyCode, KeyChord, KeyMod } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
5
|
-
import { EditorAction, registerEditorAction } from 'vscode/vscode/vs/editor/browser/editorExtensions';
|
|
6
|
-
import { ICodeEditorService } from 'vscode/vscode/vs/editor/browser/services/codeEditorService';
|
|
7
|
-
import { Position } from 'vscode/vscode/vs/editor/common/core/position';
|
|
8
|
-
import { EditorContextKeys } from 'vscode/vscode/vs/editor/common/editorContextKeys';
|
|
9
|
-
import { ILanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeatures';
|
|
10
|
-
import { MessageController } from 'vscode/vscode/vs/editor/contrib/message/browser/messageController';
|
|
11
|
-
import { localize2, localize } from 'vscode/vscode/vs/nls';
|
|
12
|
-
import { Action2, MenuId, registerAction2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
13
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
14
|
-
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
15
|
-
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
16
|
-
import { KeybindingWeight } from 'vscode/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
17
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
18
|
-
import { PanelFocusContext } from 'vscode/vscode/vs/workbench/common/contextkeys';
|
|
19
|
-
import { ChatContextKeys } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatContextKeys';
|
|
2
|
+
import { getDomNodePagePosition } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
3
|
+
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
4
|
+
import { KeyCode, KeyChord, KeyMod } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
5
|
+
import { EditorAction, registerEditorAction } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorExtensions';
|
|
6
|
+
import { ICodeEditorService } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/services/codeEditorService';
|
|
7
|
+
import { Position } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position';
|
|
8
|
+
import { EditorContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/editorContextKeys';
|
|
9
|
+
import { ILanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures';
|
|
10
|
+
import { MessageController } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/message/browser/messageController';
|
|
11
|
+
import { localize2, localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
12
|
+
import { Action2, MenuId, registerAction2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
13
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
14
|
+
import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
|
|
15
|
+
import { IContextMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service';
|
|
16
|
+
import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
17
|
+
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
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';
|
|
20
20
|
import { openBreakpointSource } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/breakpointsView';
|
|
21
21
|
import { DisassemblyView } from './disassemblyView.js';
|
|
22
|
-
import { CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DISASSEMBLY_VIEW_FOCUS, BREAKPOINT_EDITOR_CONTRIBUTION_ID, BreakpointWidgetContext, CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE, CONTEXT_IN_DEBUG_MODE, CONTEXT_DEBUG_STATE, CONTEXT_DISASSEMBLE_REQUEST_SUPPORTED, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST, CONTEXT_CALLSTACK_ITEM_TYPE, REPL_VIEW_ID, WATCH_VIEW_ID, EDITOR_CONTRIBUTION_ID, CONTEXT_STEP_INTO_TARGETS_SUPPORTED, CONTEXT_EXCEPTION_WIDGET_VISIBLE } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
23
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
24
|
-
import { getEvaluatableExpressionAtPosition } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
22
|
+
import { CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DISASSEMBLY_VIEW_FOCUS, BREAKPOINT_EDITOR_CONTRIBUTION_ID, BreakpointWidgetContext, CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE, CONTEXT_IN_DEBUG_MODE, CONTEXT_DEBUG_STATE, CONTEXT_DISASSEMBLE_REQUEST_SUPPORTED, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST, CONTEXT_CALLSTACK_ITEM_TYPE, 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';
|
|
23
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
24
|
+
import { getEvaluatableExpressionAtPosition } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
25
25
|
import { DisassemblyViewInput } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/disassemblyViewInput';
|
|
26
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
27
|
-
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
26
|
+
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
27
|
+
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
28
28
|
|
|
29
29
|
class ToggleBreakpointAction extends Action2 {
|
|
30
30
|
constructor() {
|
|
31
31
|
super({
|
|
32
32
|
id: 'editor.debug.action.toggleBreakpoint',
|
|
33
33
|
title: {
|
|
34
|
-
...( localize2(
|
|
35
|
-
mnemonicTitle: ( localize(
|
|
34
|
+
...( localize2(5265, "Debug: Toggle Breakpoint")),
|
|
35
|
+
mnemonicTitle: ( localize(5266, "Toggle &&Breakpoint")),
|
|
36
36
|
},
|
|
37
37
|
f1: true,
|
|
38
38
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -89,11 +89,11 @@ class ConditionalBreakpointAction extends EditorAction {
|
|
|
89
89
|
constructor() {
|
|
90
90
|
super({
|
|
91
91
|
id: 'editor.debug.action.conditionalBreakpoint',
|
|
92
|
-
label: ( localize2(
|
|
92
|
+
label: ( localize2(5267, "Debug: Add Conditional Breakpoint...")),
|
|
93
93
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
94
94
|
menuOpts: {
|
|
95
95
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
96
|
-
title: ( localize(
|
|
96
|
+
title: ( localize(5268, "&&Conditional Breakpoint...")),
|
|
97
97
|
group: '1_breakpoints',
|
|
98
98
|
order: 1,
|
|
99
99
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -112,12 +112,12 @@ class LogPointAction extends EditorAction {
|
|
|
112
112
|
constructor() {
|
|
113
113
|
super({
|
|
114
114
|
id: 'editor.debug.action.addLogPoint',
|
|
115
|
-
label: ( localize2(
|
|
115
|
+
label: ( localize2(5269, "Debug: Add Logpoint...")),
|
|
116
116
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
117
117
|
menuOpts: [
|
|
118
118
|
{
|
|
119
119
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
120
|
-
title: ( localize(
|
|
120
|
+
title: ( localize(5270, "&&Logpoint...")),
|
|
121
121
|
group: '1_breakpoints',
|
|
122
122
|
order: 4,
|
|
123
123
|
when: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -137,13 +137,13 @@ class TriggerByBreakpointAction extends EditorAction {
|
|
|
137
137
|
constructor() {
|
|
138
138
|
super({
|
|
139
139
|
id: 'editor.debug.action.triggerByBreakpoint',
|
|
140
|
-
label: ( localize(
|
|
140
|
+
label: ( localize(5271, "Debug: Add Triggered Breakpoint...")),
|
|
141
141
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
142
142
|
alias: 'Debug: Triggered Breakpoint...',
|
|
143
143
|
menuOpts: [
|
|
144
144
|
{
|
|
145
145
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
146
|
-
title: ( localize(
|
|
146
|
+
title: ( localize(5272, "&&Triggered Breakpoint...")),
|
|
147
147
|
group: '1_breakpoints',
|
|
148
148
|
order: 4,
|
|
149
149
|
when: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
@@ -163,12 +163,12 @@ class EditBreakpointAction extends EditorAction {
|
|
|
163
163
|
constructor() {
|
|
164
164
|
super({
|
|
165
165
|
id: 'editor.debug.action.editBreakpoint',
|
|
166
|
-
label: ( localize(
|
|
166
|
+
label: ( localize(5273, "Debug: Edit Breakpoint")),
|
|
167
167
|
alias: 'Debug: Edit Existing Breakpoint',
|
|
168
168
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE,
|
|
169
169
|
menuOpts: {
|
|
170
170
|
menuId: MenuId.MenubarNewBreakpointMenu,
|
|
171
|
-
title: ( localize(
|
|
171
|
+
title: ( localize(5274, "&&Edit Breakpoint")),
|
|
172
172
|
group: '1_breakpoints',
|
|
173
173
|
order: 1,
|
|
174
174
|
when: CONTEXT_DEBUGGERS_AVAILABLE
|
|
@@ -203,8 +203,8 @@ class OpenDisassemblyViewAction extends Action2 {
|
|
|
203
203
|
super({
|
|
204
204
|
id: OpenDisassemblyViewAction.ID,
|
|
205
205
|
title: {
|
|
206
|
-
...( localize2(
|
|
207
|
-
mnemonicTitle: ( localize(
|
|
206
|
+
...( localize2(5275, "Open Disassembly View")),
|
|
207
|
+
mnemonicTitle: ( localize(5276, "&&DisassemblyView")),
|
|
208
208
|
},
|
|
209
209
|
precondition: CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE,
|
|
210
210
|
menu: [
|
|
@@ -239,11 +239,11 @@ class ToggleDisassemblyViewSourceCodeAction extends Action2 {
|
|
|
239
239
|
super({
|
|
240
240
|
id: ToggleDisassemblyViewSourceCodeAction.ID,
|
|
241
241
|
title: {
|
|
242
|
-
...( localize2(
|
|
243
|
-
mnemonicTitle: ( localize(
|
|
242
|
+
...( localize2(5277, "Toggle Source Code in Disassembly View")),
|
|
243
|
+
mnemonicTitle: ( localize(5278, "&&ToggleSource")),
|
|
244
244
|
},
|
|
245
245
|
metadata: {
|
|
246
|
-
description: ( localize2(
|
|
246
|
+
description: ( localize2(5279, 'Shows or hides source code in disassembly'))
|
|
247
247
|
},
|
|
248
248
|
f1: true,
|
|
249
249
|
});
|
|
@@ -258,7 +258,7 @@ class ToggleDisassemblyViewSourceCodeAction extends Action2 {
|
|
|
258
258
|
}
|
|
259
259
|
class RunToCursorAction extends EditorAction {
|
|
260
260
|
static { this.ID = 'editor.debug.action.runToCursor'; }
|
|
261
|
-
static { this.LABEL = ( localize2(
|
|
261
|
+
static { this.LABEL = ( localize2(5280, "Run to Cursor")); }
|
|
262
262
|
constructor() {
|
|
263
263
|
super({
|
|
264
264
|
id: RunToCursorAction.ID,
|
|
@@ -291,7 +291,7 @@ class RunToCursorAction extends EditorAction {
|
|
|
291
291
|
}
|
|
292
292
|
class SelectionToReplAction extends EditorAction {
|
|
293
293
|
static { this.ID = 'editor.debug.action.selectionToRepl'; }
|
|
294
|
-
static { this.LABEL = ( localize2(
|
|
294
|
+
static { this.LABEL = ( localize2(5281, "Evaluate in Debug Console")); }
|
|
295
295
|
constructor() {
|
|
296
296
|
super({
|
|
297
297
|
id: SelectionToReplAction.ID,
|
|
@@ -326,7 +326,7 @@ class SelectionToReplAction extends EditorAction {
|
|
|
326
326
|
}
|
|
327
327
|
class SelectionToWatchExpressionsAction extends EditorAction {
|
|
328
328
|
static { this.ID = 'editor.debug.action.selectionToWatch'; }
|
|
329
|
-
static { this.LABEL = ( localize2(
|
|
329
|
+
static { this.LABEL = ( localize2(5282, "Add to Watch")); }
|
|
330
330
|
constructor() {
|
|
331
331
|
super({
|
|
332
332
|
id: SelectionToWatchExpressionsAction.ID,
|
|
@@ -371,7 +371,7 @@ class ShowDebugHoverAction extends EditorAction {
|
|
|
371
371
|
constructor() {
|
|
372
372
|
super({
|
|
373
373
|
id: 'editor.debug.action.showDebugHover',
|
|
374
|
-
label: ( localize2(
|
|
374
|
+
label: ( localize2(5283, "Debug: Show Hover")),
|
|
375
375
|
precondition: CONTEXT_IN_DEBUG_MODE,
|
|
376
376
|
kbOpts: {
|
|
377
377
|
kbExpr: EditorContextKeys.editorTextFocus,
|
|
@@ -388,10 +388,10 @@ class ShowDebugHoverAction extends EditorAction {
|
|
|
388
388
|
return editor.getContribution(EDITOR_CONTRIBUTION_ID)?.showHover(position, true);
|
|
389
389
|
}
|
|
390
390
|
}
|
|
391
|
-
const NO_TARGETS_MESSAGE = ( localize(
|
|
391
|
+
const NO_TARGETS_MESSAGE = ( localize(5284, "Step targets are not available here"));
|
|
392
392
|
class StepIntoTargetsAction extends EditorAction {
|
|
393
393
|
static { this.ID = 'editor.debug.action.stepIntoTargets'; }
|
|
394
|
-
static { this.LABEL = ( localize(
|
|
394
|
+
static { this.LABEL = ( localize(5285, "Step Into Target")); }
|
|
395
395
|
constructor() {
|
|
396
396
|
super({
|
|
397
397
|
id: StepIntoTargetsAction.ID,
|
|
@@ -496,7 +496,7 @@ class GoToNextBreakpointAction extends GoToBreakpointAction {
|
|
|
496
496
|
constructor() {
|
|
497
497
|
super(true, {
|
|
498
498
|
id: 'editor.debug.action.goToNextBreakpoint',
|
|
499
|
-
label: ( localize2(
|
|
499
|
+
label: ( localize2(5286, "Debug: Go to Next Breakpoint")),
|
|
500
500
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE
|
|
501
501
|
});
|
|
502
502
|
}
|
|
@@ -505,7 +505,7 @@ class GoToPreviousBreakpointAction extends GoToBreakpointAction {
|
|
|
505
505
|
constructor() {
|
|
506
506
|
super(false, {
|
|
507
507
|
id: 'editor.debug.action.goToPreviousBreakpoint',
|
|
508
|
-
label: ( localize2(
|
|
508
|
+
label: ( localize2(5287, "Debug: Go to Previous Breakpoint")),
|
|
509
509
|
precondition: CONTEXT_DEBUGGERS_AVAILABLE
|
|
510
510
|
});
|
|
511
511
|
}
|
|
@@ -514,7 +514,7 @@ class CloseExceptionWidgetAction extends EditorAction {
|
|
|
514
514
|
constructor() {
|
|
515
515
|
super({
|
|
516
516
|
id: 'editor.debug.action.closeExceptionWidget',
|
|
517
|
-
label: ( localize2(
|
|
517
|
+
label: ( localize2(5288, "Close Exception Widget")),
|
|
518
518
|
precondition: CONTEXT_EXCEPTION_WIDGET_VISIBLE,
|
|
519
519
|
kbOpts: {
|
|
520
520
|
primary: KeyCode.Escape,
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { IMouseEvent } from "vscode/vscode/vs/base/browser/mouseEvent";
|
|
2
|
-
import { ICodeEditor } from "vscode/vscode/vs/editor/browser/editorBrowser";
|
|
3
|
-
import { Position } from "vscode/vscode/vs/editor/common/core/position";
|
|
4
|
-
import { ILanguageFeatureDebounceService } from "vscode/vscode/vs/editor/common/services/languageFeatureDebounce";
|
|
5
|
-
import { ILanguageFeaturesService } from "vscode/vscode/vs/editor/common/services/languageFeatures";
|
|
6
|
-
import { ICommandService } from "vscode/vscode/vs/platform/commands/common/commands.service";
|
|
7
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
8
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
9
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
10
|
-
import { IUriIdentityService } from "vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
11
|
-
import { IDebugEditorContribution } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
12
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
13
|
-
import { IHostService } from "vscode/vscode/vs/workbench/services/host/browser/host.service";
|
|
1
|
+
import { IMouseEvent } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/mouseEvent";
|
|
2
|
+
import { ICodeEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
|
|
3
|
+
import { Position } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position";
|
|
4
|
+
import { ILanguageFeatureDebounceService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatureDebounce";
|
|
5
|
+
import { ILanguageFeaturesService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures";
|
|
6
|
+
import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
|
|
7
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
8
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
9
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
10
|
+
import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
11
|
+
import { IDebugEditorContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
12
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
13
|
+
import { IHostService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service";
|
|
14
14
|
export declare const debugInlineForeground: string;
|
|
15
15
|
export declare const debugInlineBackground: string;
|
|
16
16
|
export declare class DebugEditorContribution implements IDebugEditorContribution {
|
|
@@ -1,63 +1,63 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { addDisposableListener, isKeyboardEvent } from 'vscode/vscode/vs/base/browser/dom';
|
|
4
|
-
import { DomEmitter } from 'vscode/vscode/vs/base/browser/event';
|
|
5
|
-
import { StandardKeyboardEvent } from 'vscode/vscode/vs/base/browser/keyboardEvent';
|
|
6
|
-
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
7
|
-
import { CancellationTokenSource, CancellationToken } from 'vscode/vscode/vs/base/common/cancellation';
|
|
8
|
-
import { memoize } from 'vscode/vscode/vs/base/common/decorators';
|
|
9
|
-
import { onUnexpectedExternalError, illegalArgument } from 'vscode/vscode/vs/base/common/errors';
|
|
10
|
-
import { Event } from 'vscode/vscode/vs/base/common/event';
|
|
11
|
-
import { visit } from 'vscode/vscode/vs/base/common/json';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { addDisposableListener, isKeyboardEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { DomEmitter } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/event';
|
|
5
|
+
import { StandardKeyboardEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/keyboardEvent';
|
|
6
|
+
import { RunOnceScheduler } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
7
|
+
import { CancellationTokenSource, CancellationToken } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation';
|
|
8
|
+
import { memoize } from '@codingame/monaco-vscode-api/vscode/vs/base/common/decorators';
|
|
9
|
+
import { onUnexpectedExternalError, illegalArgument } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
|
|
10
|
+
import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
11
|
+
import { visit } from '@codingame/monaco-vscode-api/vscode/vs/base/common/json';
|
|
12
12
|
import { setProperty } from '@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common/vscode/vs/base/common/jsonEdit';
|
|
13
|
-
import { KeyCode } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
14
|
-
import { MutableDisposable, DisposableStore, toDisposable, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
15
|
-
import { clamp } from 'vscode/vscode/vs/base/common/numbers';
|
|
16
|
-
import { basename } from 'vscode/vscode/vs/base/common/path';
|
|
17
|
-
import { isMacintosh } from 'vscode/vscode/vs/base/common/platform';
|
|
18
|
-
import { noBreakWhitespace, format } from 'vscode/vscode/vs/base/common/strings';
|
|
19
|
-
import { isDefined, assertType } from 'vscode/vscode/vs/base/common/types';
|
|
20
|
-
import { Constants } from 'vscode/vscode/vs/base/common/uint';
|
|
21
|
-
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
22
|
-
import { CoreEditingCommands } from 'vscode/vscode/vs/editor/browser/coreCommands';
|
|
23
|
-
import { MouseTargetType } from 'vscode/vscode/vs/editor/browser/editorBrowser';
|
|
24
|
-
import { EditorOption } from 'vscode/vscode/vs/editor/common/config/editorOptions';
|
|
25
|
-
import { EditOperation } from 'vscode/vscode/vs/editor/common/core/editOperation';
|
|
26
|
-
import { Position } from 'vscode/vscode/vs/editor/common/core/position';
|
|
27
|
-
import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
28
|
-
import { DEFAULT_WORD_REGEXP } from 'vscode/vscode/vs/editor/common/core/wordHelper';
|
|
29
|
-
import { ScrollType } from 'vscode/vscode/vs/editor/common/editorCommon';
|
|
30
|
-
import { StandardTokenType } from 'vscode/vscode/vs/editor/common/encodedTokenAttributes';
|
|
31
|
-
import { InjectedTextCursorStops } from 'vscode/vscode/vs/editor/common/model';
|
|
32
|
-
import { ILanguageFeatureDebounceService } from 'vscode/vscode/vs/editor/common/services/languageFeatureDebounce';
|
|
33
|
-
import { ILanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeatures';
|
|
34
|
-
import { IModelService } from 'vscode/vscode/vs/editor/common/services/model';
|
|
35
|
-
import { ContentHoverController } from 'vscode/vscode/vs/editor/contrib/hover/browser/contentHoverController';
|
|
36
|
-
import { HoverStartMode, HoverStartSource } from 'vscode/vscode/vs/editor/contrib/hover/browser/hoverOperation';
|
|
37
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
38
|
-
import { CommandsRegistry } from 'vscode/vscode/vs/platform/commands/common/commands';
|
|
39
|
-
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
40
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
41
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
42
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
43
|
-
import { registerColor } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
44
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
45
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
46
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
47
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
48
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
49
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
50
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
51
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
52
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
53
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
54
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
13
|
+
import { KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
14
|
+
import { MutableDisposable, DisposableStore, toDisposable, dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
15
|
+
import { clamp } from '@codingame/monaco-vscode-api/vscode/vs/base/common/numbers';
|
|
16
|
+
import { basename } from '@codingame/monaco-vscode-api/vscode/vs/base/common/path';
|
|
17
|
+
import { isMacintosh } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
|
|
18
|
+
import { noBreakWhitespace, format } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings';
|
|
19
|
+
import { isDefined, assertType } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
20
|
+
import { Constants } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uint';
|
|
21
|
+
import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
|
|
22
|
+
import { CoreEditingCommands } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/coreCommands';
|
|
23
|
+
import { MouseTargetType } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser';
|
|
24
|
+
import { EditorOption } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/editorOptions';
|
|
25
|
+
import { EditOperation } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/editOperation';
|
|
26
|
+
import { Position } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position';
|
|
27
|
+
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
28
|
+
import { DEFAULT_WORD_REGEXP } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/wordHelper';
|
|
29
|
+
import { ScrollType } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/editorCommon';
|
|
30
|
+
import { StandardTokenType } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/encodedTokenAttributes';
|
|
31
|
+
import { InjectedTextCursorStops } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/model';
|
|
32
|
+
import { ILanguageFeatureDebounceService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatureDebounce';
|
|
33
|
+
import { ILanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures';
|
|
34
|
+
import { IModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model';
|
|
35
|
+
import { ContentHoverController } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/hover/browser/contentHoverController';
|
|
36
|
+
import { HoverStartMode, HoverStartSource } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/hover/browser/hoverOperation';
|
|
37
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
38
|
+
import { CommandsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands';
|
|
39
|
+
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
40
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
41
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
42
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
43
|
+
import { registerColor } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
44
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
45
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
46
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
47
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
48
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
49
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
50
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
51
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
52
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
53
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
54
|
+
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
55
55
|
import { DebugHoverWidget, ShowDebugHoverResult } from './debugHover.js';
|
|
56
56
|
import { ExceptionWidget } from './exceptionWidget.js';
|
|
57
|
-
import { CONTEXT_EXCEPTION_WIDGET_VISIBLE, State } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
58
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
57
|
+
import { CONTEXT_EXCEPTION_WIDGET_VISIBLE, State } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
58
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
59
59
|
import { Expression } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
60
|
-
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
|
|
60
|
+
import { IHostService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service';
|
|
61
61
|
|
|
62
62
|
const MAX_NUM_INLINE_VALUES = 100;
|
|
63
63
|
const MAX_INLINE_DECORATOR_LENGTH = 150;
|
|
@@ -68,8 +68,8 @@ registerColor('editor.inlineValuesForeground', {
|
|
|
68
68
|
light: '#00000080',
|
|
69
69
|
hcDark: '#ffffff80',
|
|
70
70
|
hcLight: '#00000080'
|
|
71
|
-
}, ( localize(
|
|
72
|
-
registerColor('editor.inlineValuesBackground', '#ffc80033', ( localize(
|
|
71
|
+
}, ( localize(5289, "Color for the debug inline value text.")));
|
|
72
|
+
registerColor('editor.inlineValuesBackground', '#ffc80033', ( localize(5290, "Color for the debug inline value background.")));
|
|
73
73
|
class InlineSegment {
|
|
74
74
|
constructor(column, text) {
|
|
75
75
|
this.column = column;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { IMouseEvent } from "vscode/vscode/vs/base/browser/mouseEvent";
|
|
2
|
-
import { ContentWidgetPositionPreference, ICodeEditor, IContentWidget, IContentWidgetPosition } from "vscode/vscode/vs/editor/browser/editorBrowser";
|
|
3
|
-
import { IDimension } from "vscode/vscode/vs/editor/common/core/dimension";
|
|
4
|
-
import { Position } from "vscode/vscode/vs/editor/common/core/position";
|
|
5
|
-
import { IMenuService } from "vscode/vscode/vs/platform/actions/common/actions.service";
|
|
6
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
7
|
-
import { IContextMenuService } from "vscode/vscode/vs/platform/contextview/browser/contextView.service";
|
|
8
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
9
|
-
import { IExpression, IStackFrame } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
10
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
1
|
+
import { IMouseEvent } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/mouseEvent";
|
|
2
|
+
import { ContentWidgetPositionPreference, ICodeEditor, IContentWidget, IContentWidgetPosition } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
|
|
3
|
+
import { IDimension } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/dimension";
|
|
4
|
+
import { Position } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position";
|
|
5
|
+
import { IMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service";
|
|
6
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
7
|
+
import { IContextMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
8
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
9
|
+
import { IExpression, IStackFrame } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
10
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
11
11
|
export declare enum ShowDebugHoverResult {
|
|
12
12
|
NOT_CHANGED = 0,
|
|
13
13
|
NOT_AVAILABLE = 1,
|
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { $ as $$1, append, addStandardDisposableListener, SafeTriangle, isAncestorOfActiveElement } from 'vscode/vscode/vs/base/browser/dom';
|
|
4
|
-
import { DomScrollableElement } from 'vscode/vscode/vs/base/browser/ui/scrollbar/scrollableElement';
|
|
5
|
-
import { coalesce } from 'vscode/vscode/vs/base/common/arrays';
|
|
6
|
-
import { CancellationTokenSource } from 'vscode/vscode/vs/base/common/cancellation';
|
|
7
|
-
import { KeyCode } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
8
|
-
import { DisposableStore, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
9
|
-
import { clamp } from 'vscode/vscode/vs/base/common/numbers';
|
|
10
|
-
import { isMacintosh } from 'vscode/vscode/vs/base/common/platform';
|
|
11
|
-
import { ScrollbarVisibility } from 'vscode/vscode/vs/base/common/scrollable';
|
|
12
|
-
import { ContentWidgetPositionPreference } from 'vscode/vscode/vs/editor/browser/editorBrowser';
|
|
13
|
-
import { EditorOption } from 'vscode/vscode/vs/editor/common/config/editorOptions';
|
|
14
|
-
import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
15
|
-
import { ModelDecorationOptions } from 'vscode/vscode/vs/editor/common/model/textModel';
|
|
16
|
-
import { ILanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeatures';
|
|
17
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
18
|
-
import { MenuId } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
19
|
-
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
|
|
20
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
21
|
-
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
22
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
23
|
-
import { WorkbenchAsyncDataTree } from 'vscode/vscode/vs/platform/list/browser/listService';
|
|
24
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
25
|
-
import { asCssVariable } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
26
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
27
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
28
|
-
import { editorHoverBackground, editorHoverBorder, editorHoverForeground } from 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
29
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
30
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
31
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
32
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
33
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
34
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
35
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
36
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { $ as $$1, append, addStandardDisposableListener, SafeTriangle, isAncestorOfActiveElement } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { DomScrollableElement } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/scrollbar/scrollableElement';
|
|
5
|
+
import { coalesce } from '@codingame/monaco-vscode-api/vscode/vs/base/common/arrays';
|
|
6
|
+
import { CancellationTokenSource } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation';
|
|
7
|
+
import { KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
8
|
+
import { DisposableStore, dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
9
|
+
import { clamp } from '@codingame/monaco-vscode-api/vscode/vs/base/common/numbers';
|
|
10
|
+
import { isMacintosh } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
|
|
11
|
+
import { ScrollbarVisibility } from '@codingame/monaco-vscode-api/vscode/vs/base/common/scrollable';
|
|
12
|
+
import { ContentWidgetPositionPreference } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser';
|
|
13
|
+
import { EditorOption } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/editorOptions';
|
|
14
|
+
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
15
|
+
import { ModelDecorationOptions } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/model/textModel';
|
|
16
|
+
import { ILanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures';
|
|
17
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
18
|
+
import { MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
19
|
+
import { IMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service';
|
|
20
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
21
|
+
import { IContextMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service';
|
|
22
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
23
|
+
import { WorkbenchAsyncDataTree } from '@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService';
|
|
24
|
+
import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
|
|
25
|
+
import { asCssVariable } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
26
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
27
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
28
|
+
import { editorHoverBackground, editorHoverBorder, editorHoverForeground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
29
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
30
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
31
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
32
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
33
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
34
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
35
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
36
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
37
37
|
import { Variable, Expression, VisualizedExpression } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
38
|
-
import { getEvaluatableExpressionAtPosition } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
38
|
+
import { getEvaluatableExpressionAtPosition } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
39
39
|
import { AbstractExpressionDataSource } from './baseDebugView.js';
|
|
40
40
|
import { DebugExpressionRenderer } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugExpressionRenderer';
|
|
41
41
|
import { VariablesRenderer, VisualizedVariableRenderer, openContextMenuForVariableTreeElement } from './variablesView.js';
|
|
@@ -100,7 +100,7 @@ let DebugHoverWidget = class DebugHoverWidget {
|
|
|
100
100
|
this.treeContainer.setAttribute('role', 'tree');
|
|
101
101
|
const tip = append(this.complexValueContainer, $('.tip'));
|
|
102
102
|
tip.textContent = ( localize(
|
|
103
|
-
|
|
103
|
+
5291,
|
|
104
104
|
'Hold {0} key to switch to editor language hover',
|
|
105
105
|
isMacintosh ? 'Option' : 'Alt'
|
|
106
106
|
));
|
|
@@ -338,10 +338,10 @@ DebugHoverWidget = DebugHoverWidget_1 = ( __decorate([
|
|
|
338
338
|
], DebugHoverWidget));
|
|
339
339
|
class DebugHoverAccessibilityProvider {
|
|
340
340
|
getWidgetAriaLabel() {
|
|
341
|
-
return localize(
|
|
341
|
+
return localize(5292, "Debug Hover");
|
|
342
342
|
}
|
|
343
343
|
getAriaLabel(element) {
|
|
344
|
-
return localize(
|
|
344
|
+
return localize(5293, "{0}, value {1}, variables, debug", element.name, element.value);
|
|
345
345
|
}
|
|
346
346
|
}
|
|
347
347
|
class DebugHoverDataSource extends AbstractExpressionDataSource {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
2
|
-
import { URI } from "vscode/vscode/vs/base/common/uri";
|
|
3
|
-
import { IFileOpenOptions, IFileChange, IFileSystemProvider, IStat, IWatchOptions } from "vscode/vscode/vs/platform/files/common/files";
|
|
4
|
-
import { IDebugSession } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
5
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
1
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
2
|
+
import { URI } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
3
|
+
import { IFileOpenOptions, IFileChange, IFileSystemProvider, IStat, IWatchOptions } from "@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files";
|
|
4
|
+
import { IDebugSession } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
5
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
6
6
|
export declare class DebugMemoryFileSystemProvider implements IFileSystemProvider {
|
|
7
7
|
private readonly debugService;
|
|
8
8
|
private memoryFdCounter;
|
|
@@ -12,7 +12,7 @@ export declare class DebugMemoryFileSystemProvider implements IFileSystemProvide
|
|
|
12
12
|
readonly onDidChangeFile: Event<readonly IFileChange[]>;
|
|
13
13
|
readonly capabilities: number;
|
|
14
14
|
constructor(debugService: IDebugService);
|
|
15
|
-
watch(resource: URI, opts: IWatchOptions): import("vscode/vscode/vs/base/common/lifecycle").IDisposable;
|
|
15
|
+
watch(resource: URI, opts: IWatchOptions): import("@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle").IDisposable;
|
|
16
16
|
stat(file: URI): Promise<IStat>;
|
|
17
17
|
mkdir(): never;
|
|
18
18
|
readdir(): never;
|
|
@@ -21,7 +21,7 @@ export declare class DebugMemoryFileSystemProvider implements IFileSystemProvide
|
|
|
21
21
|
open(resource: URI, _opts: IFileOpenOptions): Promise<number>;
|
|
22
22
|
close(fd: number): Promise<void>;
|
|
23
23
|
writeFile(resource: URI, content: Uint8Array): Promise<void>;
|
|
24
|
-
readFile(resource: URI): Promise<Uint8Array
|
|
24
|
+
readFile(resource: URI): Promise<Uint8Array<ArrayBuffer>>;
|
|
25
25
|
read(fd: number, pos: number, data: Uint8Array, offset: number, length: number): Promise<number>;
|
|
26
26
|
write(fd: number, pos: number, data: Uint8Array, offset: number, length: number): Promise<number>;
|
|
27
27
|
protected parseUri(uri: URI): {
|