@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
package/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { IEditorOverrideServices } from "vscode/vscode/vs/editor/standalone/browser/standaloneServices";
|
|
1
|
+
import type { IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices";
|
|
2
2
|
export default function getServiceOverride(): IEditorOverrideServices;
|
package/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/descriptors';
|
|
3
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
2
|
+
import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
|
|
3
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
4
4
|
import { DebugService } from './vscode/src/vs/workbench/contrib/debug/browser/debugService.js';
|
|
5
|
-
import { LanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeaturesService';
|
|
6
|
-
import { ILanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeatures';
|
|
7
|
-
import { IExtensionHostDebugService } from 'vscode/vscode/vs/platform/debug/common/extensionHostDebug.service';
|
|
5
|
+
import { LanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeaturesService';
|
|
6
|
+
import { ILanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures';
|
|
7
|
+
import { IExtensionHostDebugService } from '@codingame/monaco-vscode-api/vscode/vs/platform/debug/common/extensionHostDebug.service';
|
|
8
8
|
import { BrowserExtensionHostDebugService } from './vscode/src/vs/workbench/contrib/debug/browser/extensionHostDebugService.js';
|
|
9
|
-
import { IDebugVisualizerService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugVisualizers.service';
|
|
9
|
+
import { IDebugVisualizerService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugVisualizers.service';
|
|
10
10
|
import { DebugVisualizerService } from './vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.js';
|
|
11
11
|
import './service-override/tools/debugAssets.js';
|
|
12
12
|
import './vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-debug-service-override",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - debug service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,37 +15,22 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common": "
|
|
19
|
-
"@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common": "
|
|
20
|
-
"@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common": "
|
|
21
|
-
"@codingame/monaco-vscode-37e80bf5-92f5-5e4c-8b6d-98e0bb89dbef-common": "
|
|
22
|
-
"@codingame/monaco-vscode-
|
|
23
|
-
"@codingame/monaco-vscode-
|
|
24
|
-
"@codingame/monaco-vscode-
|
|
25
|
-
"@codingame/monaco-vscode-
|
|
26
|
-
"@codingame/monaco-vscode-
|
|
27
|
-
"@codingame/monaco-vscode-
|
|
28
|
-
"@codingame/monaco-vscode-
|
|
29
|
-
"@codingame/monaco-vscode-
|
|
30
|
-
"@codingame/monaco-vscode-
|
|
31
|
-
"@codingame/monaco-vscode-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
"peerDependencies": {
|
|
35
|
-
"@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common": "12.0.1",
|
|
36
|
-
"@codingame/monaco-vscode-625898ab-0e33-5b7f-a3ae-29c10271dc1c-common": "12.0.1",
|
|
37
|
-
"@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common": "12.0.1"
|
|
38
|
-
},
|
|
39
|
-
"peerDependenciesMeta": {
|
|
40
|
-
"@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common": {
|
|
41
|
-
"optional": true
|
|
42
|
-
},
|
|
43
|
-
"@codingame/monaco-vscode-625898ab-0e33-5b7f-a3ae-29c10271dc1c-common": {
|
|
44
|
-
"optional": true
|
|
45
|
-
},
|
|
46
|
-
"@codingame/monaco-vscode-6845754f-e617-5ed9-8aaa-6ca3653a9532-common": {
|
|
47
|
-
"optional": true
|
|
48
|
-
}
|
|
18
|
+
"@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common": "13.1.0",
|
|
19
|
+
"@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common": "13.1.0",
|
|
20
|
+
"@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common": "13.1.0",
|
|
21
|
+
"@codingame/monaco-vscode-37e80bf5-92f5-5e4c-8b6d-98e0bb89dbef-common": "13.1.0",
|
|
22
|
+
"@codingame/monaco-vscode-411e0589-fa79-504b-b32c-80a88847b23a-common": "13.1.0",
|
|
23
|
+
"@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common": "13.1.0",
|
|
24
|
+
"@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common": "13.1.0",
|
|
25
|
+
"@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common": "13.1.0",
|
|
26
|
+
"@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common": "13.1.0",
|
|
27
|
+
"@codingame/monaco-vscode-a7c9ae3c-16d2-5d17-86b2-981be7094566-common": "13.1.0",
|
|
28
|
+
"@codingame/monaco-vscode-api": "13.1.0",
|
|
29
|
+
"@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common": "13.1.0",
|
|
30
|
+
"@codingame/monaco-vscode-cc9ccbec-e2a1-599d-84ae-46f5efc666e3-common": "13.1.0",
|
|
31
|
+
"@codingame/monaco-vscode-e59ecb8c-db32-5324-8fe4-cf9921fd92b8-common": "13.1.0",
|
|
32
|
+
"@codingame/monaco-vscode-e7080bda-ce3e-5243-9a35-98cd9634dbda-common": "13.1.0",
|
|
33
|
+
"@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common": "13.1.0"
|
|
49
34
|
},
|
|
50
35
|
"main": "index.js",
|
|
51
36
|
"module": "index.js",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
import pngAssets from '@codingame/monaco-vscode-e59ecb8c-db32-5324-8fe4-cf9921fd92b8-common/vscode/vs/workbench/contrib/debug/browser/media/all.png';
|
|
3
|
-
import { registerAssets } from 'vscode/assets';
|
|
3
|
+
import { registerAssets } from '@codingame/monaco-vscode-api/assets';
|
|
4
4
|
|
|
5
5
|
registerAssets(pngAssets);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
2
|
-
import { Disposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
3
|
-
import { IChannel, IServerChannel } from "vscode/vscode/vs/base/parts/ipc/common/ipc";
|
|
4
|
-
import { IAttachSessionEvent, ICloseSessionEvent, IOpenExtensionWindowResult, IReloadSessionEvent, ITerminateSessionEvent } from "vscode/vscode/vs/platform/debug/common/extensionHostDebug";
|
|
5
|
-
import { IExtensionHostDebugService } from "vscode/vscode/vs/platform/debug/common/extensionHostDebug.service";
|
|
1
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
2
|
+
import { Disposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
3
|
+
import { IChannel, IServerChannel } from "@codingame/monaco-vscode-bd6ad8b7-9db3-51a8-9895-0046508c029d-common/vscode/vs/base/parts/ipc/common/ipc";
|
|
4
|
+
import { IAttachSessionEvent, ICloseSessionEvent, IOpenExtensionWindowResult, IReloadSessionEvent, ITerminateSessionEvent } from "@codingame/monaco-vscode-api/vscode/vs/platform/debug/common/extensionHostDebug";
|
|
5
|
+
import { IExtensionHostDebugService } from "@codingame/monaco-vscode-api/vscode/vs/platform/debug/common/extensionHostDebug.service";
|
|
6
6
|
export declare class ExtensionHostDebugBroadcastChannel<TContext> implements IServerChannel<TContext> {
|
|
7
7
|
static readonly ChannelName = "extensionhostdebugservice";
|
|
8
8
|
private readonly _onCloseEmitter;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
3
|
-
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
2
|
+
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
3
|
+
import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
4
4
|
|
|
5
5
|
class ExtensionHostDebugBroadcastChannel {
|
|
6
6
|
constructor() {
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { ActionBar } from "vscode/vscode/vs/base/browser/ui/actionbar/actionbar";
|
|
2
|
-
import { HighlightedLabel, IHighlight } from "vscode/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel";
|
|
3
|
-
import { IInputValidationOptions } from "vscode/vscode/vs/base/browser/ui/inputbox/inputBox";
|
|
4
|
-
import { IAsyncDataSource, ITreeNode, ITreeRenderer } from "vscode/vscode/vs/base/browser/ui/tree/tree";
|
|
5
|
-
import { FuzzyScore } from "vscode/vscode/vs/base/common/filters";
|
|
6
|
-
import { DisposableStore, IDisposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
7
|
-
import { ICommandService } from "vscode/vscode/vs/platform/commands/common/commands.service";
|
|
8
|
-
import { IContextViewService } from "vscode/vscode/vs/platform/contextview/browser/contextView.service";
|
|
9
|
-
import { IHoverService } from "vscode/vscode/vs/platform/hover/browser/hover.service";
|
|
10
|
-
import { IExpression } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
11
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
12
|
-
import { IDebugVisualizerService } from "vscode/vscode/vs/workbench/contrib/debug/common/debugVisualizers.service";
|
|
1
|
+
import { ActionBar } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar";
|
|
2
|
+
import { HighlightedLabel, IHighlight } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel";
|
|
3
|
+
import { IInputValidationOptions } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/inputbox/inputBox";
|
|
4
|
+
import { IAsyncDataSource, ITreeNode, ITreeRenderer } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/tree/tree";
|
|
5
|
+
import { FuzzyScore } from "@codingame/monaco-vscode-api/vscode/vs/base/common/filters";
|
|
6
|
+
import { DisposableStore, IDisposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
7
|
+
import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
|
|
8
|
+
import { IContextViewService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
9
|
+
import { IHoverService } from "@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service";
|
|
10
|
+
import { IExpression } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
11
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
12
|
+
import { IDebugVisualizerService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugVisualizers.service";
|
|
13
13
|
import { LinkDetector } from "@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/linkDetector";
|
|
14
14
|
export interface IRenderValueOptions {
|
|
15
15
|
showChanged?: boolean;
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { $ as $$1, append, addDisposableListener, EventType, clearNode, addStandardDisposableListener } from 'vscode/vscode/vs/base/browser/dom';
|
|
4
|
-
import { ActionBar } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
5
|
-
import { HighlightedLabel } from 'vscode/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
6
|
-
import { getDefaultHoverDelegate } from 'vscode/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
7
|
-
import { InputBox } from 'vscode/vscode/vs/base/browser/ui/inputbox/inputBox';
|
|
8
|
-
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
9
|
-
import { createMatches } from 'vscode/vscode/vs/base/common/filters';
|
|
10
|
-
import { createSingleCallFunction } from 'vscode/vscode/vs/base/common/functional';
|
|
11
|
-
import { KeyCode } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
12
|
-
import { DisposableStore, dispose, toDisposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
13
|
-
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
14
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
15
|
-
import { IContextViewService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
16
|
-
import { IHoverService } from 'vscode/vscode/vs/platform/hover/browser/hover.service';
|
|
17
|
-
import { defaultInputBoxStyles } from 'vscode/vscode/vs/platform/theme/browser/defaultStyles';
|
|
18
|
-
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, addDisposableListener, EventType, clearNode, addStandardDisposableListener } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { ActionBar } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
5
|
+
import { HighlightedLabel } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
6
|
+
import { getDefaultHoverDelegate } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
7
|
+
import { InputBox } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/inputbox/inputBox';
|
|
8
|
+
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
9
|
+
import { createMatches } from '@codingame/monaco-vscode-api/vscode/vs/base/common/filters';
|
|
10
|
+
import { createSingleCallFunction } from '@codingame/monaco-vscode-api/vscode/vs/base/common/functional';
|
|
11
|
+
import { KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
12
|
+
import { DisposableStore, dispose, toDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
13
|
+
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
14
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
15
|
+
import { IContextViewService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service';
|
|
16
|
+
import { IHoverService } from '@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service';
|
|
17
|
+
import { defaultInputBoxStyles } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/browser/defaultStyles';
|
|
18
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
19
19
|
import { Variable } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
20
|
-
import { IDebugVisualizerService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugVisualizers.service';
|
|
20
|
+
import { IDebugVisualizerService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugVisualizers.service';
|
|
21
21
|
|
|
22
22
|
const $ = $$1;
|
|
23
23
|
function renderViewTree(container) {
|
|
@@ -66,7 +66,7 @@ let AbstractExpressionsRenderer = class AbstractExpressionsRenderer {
|
|
|
66
66
|
const name = append(expression, $('span.name'));
|
|
67
67
|
const lazyButton = append(expression, $('span.lazy-button'));
|
|
68
68
|
lazyButton.classList.add(...ThemeIcon.asClassNameArray(Codicon.eye));
|
|
69
|
-
templateDisposable.add(this.hoverService.setupManagedHover(getDefaultHoverDelegate('mouse'), lazyButton, ( localize(
|
|
69
|
+
templateDisposable.add(this.hoverService.setupManagedHover(getDefaultHoverDelegate('mouse'), lazyButton, ( localize(4954, "Click to expand"))));
|
|
70
70
|
const type = append(expression, $('span.type'));
|
|
71
71
|
const value = append(expression, $('span.value'));
|
|
72
72
|
const label = templateDisposable.add(( new HighlightedLabel(name)));
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { IMenuService } from "vscode/vscode/vs/platform/actions/common/actions.service";
|
|
2
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
3
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
4
|
-
import { IContextMenuService } from "vscode/vscode/vs/platform/contextview/browser/contextView.service";
|
|
5
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
6
|
-
import { IKeybindingService } from "vscode/vscode/vs/platform/keybinding/common/keybinding.service";
|
|
7
|
-
import { IOpenerService } from "vscode/vscode/vs/platform/opener/common/opener.service";
|
|
8
|
-
import { ITelemetryService } from "vscode/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
9
|
-
import { IThemeService } from "vscode/vscode/vs/platform/theme/common/themeService.service";
|
|
1
|
+
import { IMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service";
|
|
2
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
3
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
4
|
+
import { IContextMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
5
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
6
|
+
import { IKeybindingService } from "@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service";
|
|
7
|
+
import { IOpenerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service";
|
|
8
|
+
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
9
|
+
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
10
10
|
import { ViewPane } from "@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/vscode/vs/workbench/browser/parts/views/viewPane";
|
|
11
|
-
import { IViewletViewOptions } from "@codingame/monaco-vscode-
|
|
12
|
-
import { IViewDescriptorService } from "vscode/vscode/vs/workbench/common/views.service";
|
|
13
|
-
import { IDebugSession, IStackFrame, IThread } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
14
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
11
|
+
import { IViewletViewOptions } from "@codingame/monaco-vscode-55ed5668-e8ca-5335-a587-790bcf1200c0-common/vscode/vs/workbench/browser/parts/views/viewsViewlet";
|
|
12
|
+
import { IViewDescriptorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service";
|
|
13
|
+
import { IDebugSession, IStackFrame, IThread } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
14
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
15
15
|
import { ThreadAndSessionIds } from "@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel";
|
|
16
|
-
import { IHoverService } from "vscode/vscode/vs/platform/hover/browser/hover.service";
|
|
16
|
+
import { IHoverService } from "@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service";
|
|
17
17
|
type CallStackItem = IStackFrame | IThread | IDebugSession | string | ThreadAndSessionIds | IStackFrame[];
|
|
18
18
|
export declare function getContext(element: CallStackItem | null): any;
|
|
19
19
|
export declare function getContextForContributedActions(element: CallStackItem | null): string | number;
|
|
@@ -1,56 +1,56 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { $ as $$1, append } from 'vscode/vscode/vs/base/browser/dom';
|
|
4
|
-
import { ActionBar } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
5
|
-
import { HighlightedLabel } from 'vscode/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
6
|
-
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
7
|
-
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
8
|
-
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
9
|
-
import { Event } from 'vscode/vscode/vs/base/common/event';
|
|
10
|
-
import { createMatches } from 'vscode/vscode/vs/base/common/filters';
|
|
11
|
-
import { dispose, DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
12
|
-
import { posix } from 'vscode/vscode/vs/base/common/path';
|
|
13
|
-
import { commonSuffixLength } from 'vscode/vscode/vs/base/common/strings';
|
|
14
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
15
|
-
import { getContextMenuActions, MenuEntryActionViewItem, SubmenuEntryActionViewItem, getActionBarActions } from 'vscode/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
16
|
-
import { MenuId, MenuItemAction, SubmenuItemAction, registerAction2, MenuRegistry } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
17
|
-
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
|
|
18
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
19
|
-
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
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 { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
24
|
-
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service';
|
|
25
|
-
import { WorkbenchCompressibleAsyncDataTree } from 'vscode/vscode/vs/platform/list/browser/listService';
|
|
26
|
-
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
27
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
28
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
29
|
-
import { asCssVariable } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
30
|
-
import { textLinkForeground } from 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
31
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
32
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
33
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
34
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
35
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
36
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
37
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
38
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
39
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
40
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
41
|
-
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { $ as $$1, append } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { ActionBar } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
5
|
+
import { HighlightedLabel } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
6
|
+
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
7
|
+
import { RunOnceScheduler } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
8
|
+
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
9
|
+
import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
10
|
+
import { createMatches } from '@codingame/monaco-vscode-api/vscode/vs/base/common/filters';
|
|
11
|
+
import { dispose, DisposableStore } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
12
|
+
import { posix } from '@codingame/monaco-vscode-api/vscode/vs/base/common/path';
|
|
13
|
+
import { commonSuffixLength } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings';
|
|
14
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
15
|
+
import { getContextMenuActions, MenuEntryActionViewItem, SubmenuEntryActionViewItem, getActionBarActions } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
16
|
+
import { MenuId, MenuItemAction, SubmenuItemAction, registerAction2, MenuRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
17
|
+
import { IMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service';
|
|
18
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
19
|
+
import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
|
|
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 { IKeybindingService } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
24
|
+
import { ILabelService } from '@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service';
|
|
25
|
+
import { WorkbenchCompressibleAsyncDataTree } from '@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService';
|
|
26
|
+
import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
|
|
27
|
+
import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
|
|
28
|
+
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
29
|
+
import { asCssVariable } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
30
|
+
import { textLinkForeground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
31
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
32
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
33
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
34
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
35
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
36
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
37
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
38
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
39
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
40
|
+
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
41
|
+
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
42
42
|
import { ViewPane, ViewAction } from '@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/vscode/vs/workbench/browser/parts/views/viewPane';
|
|
43
|
-
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
43
|
+
import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
|
|
44
44
|
import { renderViewTree } from './baseDebugView.js';
|
|
45
45
|
import { STOP_ID, DISCONNECT_ID, PAUSE_ID, PAUSE_LABEL, CONTINUE_ID, CONTINUE_LABEL, STEP_OVER_ID, STEP_OVER_LABEL, STEP_INTO_ID, STEP_INTO_LABEL, STEP_OUT_ID, STEP_OUT_LABEL, RESTART_SESSION_ID, RESTART_LABEL, STOP_LABEL, DISCONNECT_LABEL } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugCommands';
|
|
46
46
|
import { callstackViewSession, debugRestartFrame, debugPause, debugContinue, debugStepOver, debugStepInto, debugStepOut, debugRestart, debugStop, debugDisconnect } from '@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
47
47
|
import { createDisconnectMenuItemAction } from './debugToolBar.js';
|
|
48
|
-
import { State, CONTEXT_CALLSTACK_FOCUSED, CONTEXT_CALLSTACK_ITEM_TYPE, CONTEXT_CALLSTACK_SESSION_IS_ATTACH, CONTEXT_CALLSTACK_ITEM_STOPPED, CONTEXT_CALLSTACK_SESSION_HAS_ONE_THREAD, CONTEXT_STACK_FRAME_SUPPORTS_RESTART, isFrameDeemphasized, CALLSTACK_VIEW_ID, CONTEXT_DEBUG_STATE, getStateLabel, CONTEXT_FOCUSED_SESSION_IS_NO_DEBUG } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
49
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
48
|
+
import { State, CONTEXT_CALLSTACK_FOCUSED, CONTEXT_CALLSTACK_ITEM_TYPE, CONTEXT_CALLSTACK_SESSION_IS_ATTACH, CONTEXT_CALLSTACK_ITEM_STOPPED, CONTEXT_CALLSTACK_SESSION_HAS_ONE_THREAD, CONTEXT_STACK_FRAME_SUPPORTS_RESTART, isFrameDeemphasized, CALLSTACK_VIEW_ID, CONTEXT_DEBUG_STATE, getStateLabel, CONTEXT_FOCUSED_SESSION_IS_NO_DEBUG } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
49
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
50
50
|
import { StackFrame, Thread, ThreadAndSessionIds } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
51
|
-
import { isSessionAttach } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
52
|
-
import { getDefaultHoverDelegate } from 'vscode/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
53
|
-
import { IHoverService } from 'vscode/vscode/vs/platform/hover/browser/hover.service';
|
|
51
|
+
import { isSessionAttach } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
52
|
+
import { getDefaultHoverDelegate } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
53
|
+
import { IHoverService } from '@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service';
|
|
54
54
|
|
|
55
55
|
var SessionsRenderer_1, ThreadsRenderer_1, StackFramesRenderer_1, ErrorsRenderer_1;
|
|
56
56
|
const $ = $$1;
|
|
@@ -146,7 +146,7 @@ let CallStackView = class CallStackView extends ViewPane {
|
|
|
146
146
|
this.stateMessage.hidden = false;
|
|
147
147
|
}
|
|
148
148
|
else if (sessions.length === 1 && sessions[0].state === State.Running) {
|
|
149
|
-
this.stateMessageLabel.textContent = ( localize(
|
|
149
|
+
this.stateMessageLabel.textContent = ( localize(5070, "Running"));
|
|
150
150
|
this.stateMessageLabelHover.update(sessions[0].getLabel());
|
|
151
151
|
this.stateMessageLabel.classList.remove('exception');
|
|
152
152
|
this.stateMessage.hidden = false;
|
|
@@ -227,7 +227,7 @@ let CallStackView = class CallStackView extends ViewPane {
|
|
|
227
227
|
if (e instanceof ThreadAndSessionIds) {
|
|
228
228
|
return LoadMoreRenderer.LABEL;
|
|
229
229
|
}
|
|
230
|
-
return localize(
|
|
230
|
+
return localize(5071, "Show More Stack Frames");
|
|
231
231
|
},
|
|
232
232
|
getCompressedNodeKeyboardNavigationLabel: (e) => {
|
|
233
233
|
const firstItem = e[0];
|
|
@@ -484,7 +484,7 @@ let SessionsRenderer = class SessionsRenderer {
|
|
|
484
484
|
this.doRenderElement(lastElement, matches, templateData);
|
|
485
485
|
}
|
|
486
486
|
doRenderElement(session, matches, data) {
|
|
487
|
-
const sessionHover = data.elementDisposable.add(this.hoverService.setupManagedHover(getDefaultHoverDelegate('mouse'), data.session, ( localize(
|
|
487
|
+
const sessionHover = data.elementDisposable.add(this.hoverService.setupManagedHover(getDefaultHoverDelegate('mouse'), data.session, ( localize(5072, "Session"))));
|
|
488
488
|
data.label.set(session.getLabel(), matches);
|
|
489
489
|
const stoppedDetails = session.getStoppedDetails();
|
|
490
490
|
const thread = session.getAllThreads().find(t => t.stopped);
|
|
@@ -510,7 +510,7 @@ let SessionsRenderer = class SessionsRenderer {
|
|
|
510
510
|
data.stateLabel.classList.toggle('exception', thread.stoppedDetails.reason === 'exception');
|
|
511
511
|
}
|
|
512
512
|
else {
|
|
513
|
-
data.stateLabel.textContent = ( localize(
|
|
513
|
+
data.stateLabel.textContent = ( localize(5070, "Running"));
|
|
514
514
|
data.stateLabel.classList.remove('exception');
|
|
515
515
|
}
|
|
516
516
|
}
|
|
@@ -643,7 +643,7 @@ let StackFramesRenderer = class StackFramesRenderer {
|
|
|
643
643
|
}
|
|
644
644
|
data.actionBar.clear();
|
|
645
645
|
if (hasActions) {
|
|
646
|
-
const action = ( new Action('debug.callStack.restartFrame', ( localize(
|
|
646
|
+
const action = ( new Action('debug.callStack.restartFrame', ( localize(5073, "Restart Frame")), ThemeIcon.asClassName(debugRestartFrame), true, async () => {
|
|
647
647
|
try {
|
|
648
648
|
await stackFrame.restart();
|
|
649
649
|
}
|
|
@@ -695,7 +695,7 @@ ErrorsRenderer = ErrorsRenderer_1 = ( __decorate([
|
|
|
695
695
|
], ErrorsRenderer));
|
|
696
696
|
class LoadMoreRenderer {
|
|
697
697
|
static { this.ID = 'loadMore'; }
|
|
698
|
-
static { this.LABEL = ( localize(
|
|
698
|
+
static { this.LABEL = ( localize(5074, "Load More Stack Frames")); }
|
|
699
699
|
constructor() { }
|
|
700
700
|
get templateId() {
|
|
701
701
|
return LoadMoreRenderer.ID;
|
|
@@ -729,14 +729,14 @@ class ShowMoreRenderer {
|
|
|
729
729
|
const stackFrames = element.element;
|
|
730
730
|
if (stackFrames.every(sf => !!(sf.source && sf.source.origin && sf.source.origin === stackFrames[0].source.origin))) {
|
|
731
731
|
data.label.textContent = ( localize(
|
|
732
|
-
|
|
732
|
+
5075,
|
|
733
733
|
"Show {0} More: {1}",
|
|
734
734
|
stackFrames.length,
|
|
735
735
|
stackFrames[0].source.origin
|
|
736
736
|
));
|
|
737
737
|
}
|
|
738
738
|
else {
|
|
739
|
-
data.label.textContent = ( localize(
|
|
739
|
+
data.label.textContent = ( localize(5076, "Show {0} More Stack Frames", stackFrames.length));
|
|
740
740
|
}
|
|
741
741
|
}
|
|
742
742
|
renderCompressedElements(node, index, templateData, height) {
|
|
@@ -779,7 +779,7 @@ function stoppedText(stoppedDetails) {
|
|
|
779
779
|
}
|
|
780
780
|
function stoppedDescription(stoppedDetails) {
|
|
781
781
|
return stoppedDetails.description ||
|
|
782
|
-
(stoppedDetails.reason ? ( localize(
|
|
782
|
+
(stoppedDetails.reason ? ( localize(5077, "Paused on {0}", stoppedDetails.reason)) : ( localize(5078, "Paused")));
|
|
783
783
|
}
|
|
784
784
|
function isDebugModel(obj) {
|
|
785
785
|
return typeof obj.getSessions === 'function';
|
|
@@ -869,7 +869,7 @@ class CallStackDataSource {
|
|
|
869
869
|
}
|
|
870
870
|
class CallStackAccessibilityProvider {
|
|
871
871
|
getWidgetAriaLabel() {
|
|
872
|
-
return localize(
|
|
872
|
+
return localize(5079, "Debug Call Stack");
|
|
873
873
|
}
|
|
874
874
|
getWidgetRole() {
|
|
875
875
|
return 'treegrid';
|
|
@@ -879,11 +879,11 @@ class CallStackAccessibilityProvider {
|
|
|
879
879
|
}
|
|
880
880
|
getAriaLabel(element) {
|
|
881
881
|
if (element instanceof Thread) {
|
|
882
|
-
return localize(
|
|
882
|
+
return localize(5080, "Thread {0} {1}", element.name, element.stateLabel);
|
|
883
883
|
}
|
|
884
884
|
if (element instanceof StackFrame) {
|
|
885
885
|
return localize(
|
|
886
|
-
|
|
886
|
+
5081,
|
|
887
887
|
"Stack Frame {0}, line {1}, {2}",
|
|
888
888
|
element.name,
|
|
889
889
|
element.range.startLineNumber,
|
|
@@ -892,14 +892,14 @@ class CallStackAccessibilityProvider {
|
|
|
892
892
|
}
|
|
893
893
|
if (isDebugSession(element)) {
|
|
894
894
|
const thread = element.getAllThreads().find(t => t.stopped);
|
|
895
|
-
const state = thread ? thread.stateLabel : ( localize(
|
|
896
|
-
return localize(
|
|
895
|
+
const state = thread ? thread.stateLabel : ( localize(5070, "Running"));
|
|
896
|
+
return localize(5082, "Session {0} {1}", element.getLabel(), state);
|
|
897
897
|
}
|
|
898
898
|
if (typeof element === 'string') {
|
|
899
899
|
return element;
|
|
900
900
|
}
|
|
901
901
|
if (element instanceof Array) {
|
|
902
|
-
return localize(
|
|
902
|
+
return localize(5076, "Show {0} More Stack Frames", element.length);
|
|
903
903
|
}
|
|
904
904
|
return LoadMoreRenderer.LABEL;
|
|
905
905
|
}
|
|
@@ -927,7 +927,7 @@ registerAction2(class Collapse extends ViewAction {
|
|
|
927
927
|
super({
|
|
928
928
|
id: 'callStack.collapse',
|
|
929
929
|
viewId: CALLSTACK_VIEW_ID,
|
|
930
|
-
title: ( localize(
|
|
930
|
+
title: ( localize(5083, "Collapse All")),
|
|
931
931
|
f1: false,
|
|
932
932
|
icon: Codicon.collapseAll,
|
|
933
933
|
precondition: ( CONTEXT_DEBUG_STATE.isEqualTo(getStateLabel(State.Stopped))),
|