@codingame/monaco-vscode-debug-service-override 4.4.1 → 4.5.0-improve-code-splitting.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/debug.js +5 -4
- package/package.json +10 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +22 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +8 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +8 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +14 -11
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +13 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +4 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +7 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +12 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +7 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugProgress.js +4 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +20 -20
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +13 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +5 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTitle.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +17 -13
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +18 -16
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +11 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/extensionHostDebugService.js +8 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +16 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +7 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +23 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +26 -22
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +16 -13
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +14 -11
- package/vscode/src/vs/workbench/contrib/debug/common/breakpoints.js +2 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +2 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugContext.js +16 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +4 -5
- package/vscode/src/vs/workbench/contrib/debug/common/debugStorage.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/common/debugTelemetry.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.js +212 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +7 -5
- package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +3 -3
- package/vscode/src/vs/workbench/services/configurationResolver/browser/configurationResolverService.js +9 -9
- package/override/vs/platform/dialogs/common/dialogs.js +0 -10
|
@@ -14,24 +14,25 @@ import Severity$1 from 'vscode/vscode/vs/base/common/severity';
|
|
|
14
14
|
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
15
15
|
import { generateUuid } from 'vscode/vscode/vs/base/common/uuid';
|
|
16
16
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
17
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
17
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
18
18
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
19
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log';
|
|
20
|
-
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification';
|
|
21
|
-
import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService';
|
|
22
|
-
import { ITelemetryService, ICustomEndpointTelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
|
|
23
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity';
|
|
24
|
-
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
19
|
+
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
20
|
+
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
21
|
+
import { IProductService } from 'vscode/vscode/vs/platform/product/common/productService.service';
|
|
22
|
+
import { ITelemetryService, ICustomEndpointTelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
23
|
+
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
24
|
+
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
|
|
25
25
|
import { RawDebugSession } from './rawDebugSession.js';
|
|
26
|
-
import {
|
|
26
|
+
import { VIEWLET_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
27
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
27
28
|
import { MemoryRegion, ExpressionContainer, Thread } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
28
29
|
import { Source } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugSource';
|
|
29
30
|
import { filterExceptionsFromTelemetry } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
30
31
|
import { ReplModel } from 'vscode/vscode/vs/workbench/contrib/debug/common/replModel';
|
|
31
|
-
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
|
|
32
|
-
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host';
|
|
33
|
-
import { ILifecycleService } from 'vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
34
|
-
import { IPaneCompositePartService } from 'vscode/vscode/vs/workbench/services/panecomposite/browser/panecomposite';
|
|
32
|
+
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService.service';
|
|
33
|
+
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
|
|
34
|
+
import { ILifecycleService } from 'vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle.service';
|
|
35
|
+
import { IPaneCompositePartService } from 'vscode/vscode/vs/workbench/services/panecomposite/browser/panecomposite.service';
|
|
35
36
|
import { getActiveWindow } from 'vscode/vscode/vs/base/browser/dom';
|
|
36
37
|
import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
|
|
37
38
|
import { isDefined } from 'vscode/vscode/vs/base/common/types';
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
2
2
|
import { matchesFuzzy } from 'vscode/vscode/vs/base/common/filters';
|
|
3
3
|
import { DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
4
|
+
import { REPL_VIEW_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
5
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
6
|
+
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
7
|
+
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
8
|
+
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
8
9
|
|
|
9
10
|
async function showDebugSessionMenu(accessor, selectAndStartID) {
|
|
10
11
|
const quickInputService = accessor.get(IQuickInputService);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
5
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
6
|
-
import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
4
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
5
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
6
|
+
import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar.service';
|
|
7
7
|
|
|
8
8
|
let DebugStatusContribution = class DebugStatusContribution {
|
|
9
9
|
constructor(statusBarService, debugService, configurationService) {
|
|
@@ -2,17 +2,17 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import Severity$1 from 'vscode/vscode/vs/base/common/severity';
|
|
4
4
|
import { Markers } from 'vscode/vscode/vs/workbench/contrib/markers/common/markers';
|
|
5
|
-
import { ITaskService } from 'vscode/vscode/vs/workbench/contrib/tasks/common/taskService';
|
|
6
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
7
|
-
import '
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
5
|
+
import { ITaskService } from 'vscode/vscode/vs/workbench/contrib/tasks/common/taskService.service';
|
|
6
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
7
|
+
import { IDialogService } from 'vscode/vscode/vs/platform/dialogs/common/dialogs.service';
|
|
8
|
+
import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
9
|
+
import { IMarkerService } from 'vscode/vscode/vs/platform/markers/common/markers.service';
|
|
10
|
+
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
11
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
11
12
|
import { createErrorWithActions } from 'vscode/vscode/vs/base/common/errorMessage';
|
|
12
13
|
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
13
14
|
import { DEBUG_CONFIGURE_COMMAND_ID, DEBUG_CONFIGURE_LABEL } from './debugCommands.js';
|
|
14
|
-
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands';
|
|
15
|
-
import { IDialogService } from 'vscode/vscode/vs/platform/dialogs/common/dialogs';
|
|
15
|
+
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
16
16
|
|
|
17
17
|
function once(match, event) {
|
|
18
18
|
return (listener, thisArgs = null, disposables) => {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
2
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
3
3
|
import { dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
4
|
-
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host';
|
|
5
|
-
import { ITitleService } from 'vscode/vscode/vs/workbench/services/title/browser/titleService';
|
|
4
|
+
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
|
|
5
|
+
import { ITitleService } from 'vscode/vscode/vs/workbench/services/title/browser/titleService.service';
|
|
6
6
|
|
|
7
7
|
let DebugTitleContribution = class DebugTitleContribution {
|
|
8
8
|
constructor(debugService, hostService, titleService) {
|
|
@@ -6,19 +6,21 @@ import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
|
6
6
|
import { equals } from 'vscode/vscode/vs/base/common/arrays';
|
|
7
7
|
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
8
8
|
import { isCancellationError } from 'vscode/vscode/vs/base/common/errors';
|
|
9
|
-
import {
|
|
9
|
+
import { DisposableStore, MutableDisposable, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
10
10
|
import './media/debugToolBar.css.js';
|
|
11
11
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
12
12
|
import { DropdownWithPrimaryActionViewItem } from 'vscode/vscode/vs/platform/actions/browser/dropdownWithPrimaryActionViewItem';
|
|
13
13
|
import { createActionViewItem, createAndFillInActionBarActions } from 'vscode/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
14
|
+
import { MenuId, MenuRegistry } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
15
|
+
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
|
|
16
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
17
|
+
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
18
|
+
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
19
|
+
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
18
20
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
19
|
-
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification';
|
|
20
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
21
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
|
|
21
|
+
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
22
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
23
|
+
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
22
24
|
import 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
23
25
|
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
24
26
|
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
@@ -30,14 +32,16 @@ import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
|
30
32
|
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
31
33
|
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
32
34
|
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
33
|
-
import {
|
|
35
|
+
import { Themable } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
36
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
34
37
|
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
35
38
|
import { FocusSessionActionViewItem } from './debugActionViewItems.js';
|
|
36
39
|
import { debugToolBarBackground, debugToolBarBorder } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugColors';
|
|
37
|
-
import {
|
|
38
|
-
import { debugContinue, debugPause,
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
40
|
+
import { FOCUS_SESSION_ID, STOP_ID, DISCONNECT_ID, CONTINUE_ID, CONTINUE_LABEL, PAUSE_ID, PAUSE_LABEL, STOP_LABEL, DISCONNECT_LABEL, STEP_OVER_ID, STEP_OVER_LABEL, STEP_INTO_ID, STEP_INTO_LABEL, STEP_OUT_ID, STEP_OUT_LABEL, RESTART_SESSION_ID, RESTART_LABEL, STEP_BACK_ID, REVERSE_CONTINUE_ID, FOCUS_SESSION_LABEL, DISCONNECT_AND_SUSPEND_ID, DISCONNECT_AND_SUSPEND_LABEL } from './debugCommands.js';
|
|
41
|
+
import { debugGripper, debugContinue, debugPause, debugStop, debugDisconnect, debugStepOver, debugStepInto, debugStepOut, debugRestart, debugStepBack, debugReverseContinue } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
42
|
+
import { VIEWLET_ID, CONTEXT_DEBUG_STATE, CONTEXT_IN_DEBUG_MODE, CONTEXT_FOCUSED_SESSION_IS_NO_DEBUG, CONTEXT_FOCUSED_SESSION_IS_ATTACH, CONTEXT_TERMINATE_DEBUGGEE_SUPPORTED, CONTEXT_STEP_BACK_SUPPORTED, CONTEXT_MULTI_SESSION_DEBUG, CONTEXT_SUSPEND_DEBUGGEE_SUPPORTED } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
43
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
44
|
+
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
41
45
|
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
42
46
|
import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
|
|
43
47
|
import { clamp } from 'vscode/vscode/vs/base/common/numbers';
|
|
@@ -4,28 +4,30 @@ import './media/debugViewlet.css.js';
|
|
|
4
4
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
5
5
|
import { createActionViewItem } from 'vscode/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
6
6
|
import { MenuRegistry, MenuId, registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
7
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
7
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
8
|
+
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
9
|
+
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
10
|
+
import { IContextMenuService, IContextViewService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
10
11
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
11
|
-
import { IProgressService } from 'vscode/vscode/vs/platform/progress/common/progress';
|
|
12
|
-
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput';
|
|
13
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
14
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
|
|
15
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
16
|
-
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
17
|
-
import {
|
|
12
|
+
import { IProgressService } from 'vscode/vscode/vs/platform/progress/common/progress.service';
|
|
13
|
+
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
14
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
15
|
+
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
16
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
17
|
+
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
|
|
18
|
+
import { ViewPaneContainer, ViewsSubMenu } from 'vscode/vscode/vs/workbench/browser/parts/views/viewPaneContainer';
|
|
18
19
|
import { WorkbenchStateContext } from 'vscode/vscode/vs/workbench/common/contextkeys';
|
|
19
|
-
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views';
|
|
20
|
-
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService';
|
|
20
|
+
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
21
|
+
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
21
22
|
import { StartDebugActionViewItem, FocusSessionActionViewItem } from './debugActionViewItems.js';
|
|
22
|
-
import { DEBUG_START_COMMAND_ID,
|
|
23
|
+
import { DEBUG_START_COMMAND_ID, FOCUS_SESSION_ID, STOP_ID, DISCONNECT_ID, DEBUG_START_LABEL, DEBUG_CONFIGURE_COMMAND_ID, DEBUG_CONFIGURE_LABEL, SELECT_AND_START_ID } from './debugCommands.js';
|
|
23
24
|
import { debugConfigure } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
24
25
|
import { createDisconnectMenuItemAction } from './debugToolBar.js';
|
|
25
26
|
import { WelcomeView } from './welcomeView.js';
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
27
|
+
import { VIEWLET_ID, CONTEXT_DEBUG_UX_KEY, BREAKPOINTS_VIEW_ID, CONTEXT_DEBUG_UX, CONTEXT_DEBUG_STATE, getStateLabel, CONTEXT_DEBUGGERS_AVAILABLE, REPL_VIEW_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
28
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
29
|
+
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
30
|
+
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
29
31
|
|
|
30
32
|
let DebugViewPaneContainer = class DebugViewPaneContainer extends ViewPaneContainer {
|
|
31
33
|
constructor(layoutService, telemetryService, progressService, debugService, instantiationService, contextService, storageService, themeService, contextMenuService, extensionService, configurationService, contextViewService, contextKeyService, viewDescriptorService) {
|
|
@@ -13,13 +13,13 @@ import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
|
13
13
|
import { StringBuilder } from 'vscode/vscode/vs/editor/common/core/stringBuilder';
|
|
14
14
|
import { ITextModelService } from 'vscode/vscode/vs/editor/common/services/resolverService';
|
|
15
15
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
16
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
17
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
16
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
17
|
+
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
18
18
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
19
19
|
import { WorkbenchTable } from 'vscode/vscode/vs/platform/list/browser/listService';
|
|
20
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log';
|
|
21
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
22
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
|
|
20
|
+
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
21
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
22
|
+
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
23
23
|
import 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
24
24
|
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
25
25
|
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
@@ -31,16 +31,17 @@ import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
|
31
31
|
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
32
32
|
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
33
33
|
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
34
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
35
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity';
|
|
34
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
35
|
+
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
36
36
|
import { EditorPane } from 'vscode/vscode/vs/workbench/browser/parts/editor/editorPane';
|
|
37
37
|
import { topStackFrameColor, focusedStackFrameColor } from 'vscode/vscode/vs/workbench/contrib/debug/browser/callStackEditorContribution';
|
|
38
38
|
import { breakpoint, debugBreakpointHint, debugStackframe, debugStackframeFocused } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
39
|
-
import { DISASSEMBLY_VIEW_ID,
|
|
39
|
+
import { DISASSEMBLY_VIEW_ID, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
40
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
40
41
|
import { InstructionBreakpoint } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
41
42
|
import { getUriFromSource } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugSource';
|
|
42
|
-
import {
|
|
43
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
43
|
+
import { sourcesEqual, isUri } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
44
|
+
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
44
45
|
|
|
45
46
|
var DisassemblyView_1, BreakpointRenderer_1, InstructionRenderer_1;
|
|
46
47
|
const disassemblyNotAvailable = {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import './media/exceptionWidget.css.js';
|
|
3
3
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
4
|
-
import {
|
|
4
|
+
import { $ as $$1, append, isAncestorOfActiveElement } from 'vscode/vscode/vs/base/browser/dom';
|
|
5
5
|
import { ZoneWidget } from 'vscode/vscode/vs/editor/contrib/zoneWidget/browser/zoneWidget';
|
|
6
6
|
import { EDITOR_CONTRIBUTION_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
7
7
|
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
8
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
8
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
9
9
|
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
10
10
|
import { registerColor } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
11
11
|
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
@@ -3,14 +3,15 @@ import { Event } from 'vscode/vscode/vs/base/common/event';
|
|
|
3
3
|
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
4
4
|
import 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
5
5
|
import { ExtensionHostDebugChannelClient, ExtensionHostDebugBroadcastChannel } from '../../../../platform/debug/common/extensionHostDebugIpc.js';
|
|
6
|
-
import { IFileService } from 'vscode/vscode/vs/platform/files/common/files';
|
|
7
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log';
|
|
8
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
6
|
+
import { IFileService } from 'vscode/vscode/vs/platform/files/common/files.service';
|
|
7
|
+
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
8
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
9
9
|
import { isFolderToOpen, isWorkspaceToOpen } from 'vscode/vscode/vs/platform/window/common/window';
|
|
10
|
-
import { toWorkspaceIdentifier, isSingleFolderWorkspaceIdentifier, isWorkspaceIdentifier, hasWorkspaceFileExtension
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
10
|
+
import { toWorkspaceIdentifier, isSingleFolderWorkspaceIdentifier, isWorkspaceIdentifier, hasWorkspaceFileExtension } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
11
|
+
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
|
|
12
|
+
import { IBrowserWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/browser/environmentService.service';
|
|
13
|
+
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
|
|
14
|
+
import { IRemoteAgentService } from 'vscode/vscode/vs/workbench/services/remote/common/remoteAgentService.service';
|
|
14
15
|
|
|
15
16
|
var BrowserExtensionHostDebugService_1;
|
|
16
17
|
let BrowserExtensionHostDebugService = class BrowserExtensionHostDebugService extends ExtensionHostDebugChannelClient {
|
|
@@ -3,15 +3,15 @@ import { Schemas } from 'vscode/vscode/vs/base/common/network';
|
|
|
3
3
|
import { normalize, posix, join } from 'vscode/vscode/vs/base/common/path';
|
|
4
4
|
import { isWindows, isMacintosh } from 'vscode/vscode/vs/base/common/platform';
|
|
5
5
|
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
6
|
-
import { IFileService } from 'vscode/vscode/vs/platform/files/common/files';
|
|
7
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener';
|
|
8
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
9
|
-
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
|
|
10
|
-
import { IPathService } from 'vscode/vscode/vs/workbench/services/path/common/pathService';
|
|
6
|
+
import { IFileService } from 'vscode/vscode/vs/platform/files/common/files.service';
|
|
7
|
+
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
8
|
+
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
9
|
+
import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService.service';
|
|
10
|
+
import { IPathService } from 'vscode/vscode/vs/workbench/services/path/common/pathService.service';
|
|
11
11
|
import { StandardKeyboardEvent } from 'vscode/vscode/vs/base/browser/keyboardEvent';
|
|
12
12
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
13
|
-
import { ITunnelService } from 'vscode/vscode/vs/platform/tunnel/common/tunnel';
|
|
14
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
13
|
+
import { ITunnelService } from 'vscode/vscode/vs/platform/tunnel/common/tunnel.service';
|
|
14
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
15
15
|
import { getWindow } from 'vscode/vscode/vs/base/browser/dom';
|
|
16
16
|
|
|
17
17
|
const CONTROL_CODES = '\\u0000-\\u0020\\u007f-\\u009f';
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
2
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
3
3
|
import { posix, isAbsolute, normalize } from 'vscode/vscode/vs/base/common/path';
|
|
4
|
-
import {
|
|
4
|
+
import { ViewPane, ViewAction } from 'vscode/vscode/vs/workbench/browser/parts/views/viewPane';
|
|
5
5
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
6
|
-
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView';
|
|
7
|
-
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
|
|
8
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
6
|
+
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
7
|
+
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
8
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
9
9
|
import { renderViewTree } from 'vscode/vscode/vs/workbench/contrib/debug/browser/baseDebugView';
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
10
|
+
import { CONTEXT_LOADED_SCRIPTS_ITEM_TYPE, LOADED_SCRIPTS_VIEW_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
11
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
12
|
+
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
|
|
13
|
+
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
14
|
+
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
13
15
|
import { normalizeDriveLetter, tildify } from 'vscode/vscode/vs/base/common/labels';
|
|
14
16
|
import { isWindows } from 'vscode/vscode/vs/base/common/platform';
|
|
15
17
|
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
@@ -17,19 +19,19 @@ import { ltrim } from 'vscode/vscode/vs/base/common/strings';
|
|
|
17
19
|
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
18
20
|
import { ResourceLabels } from 'vscode/vscode/vs/workbench/browser/labels';
|
|
19
21
|
import { FileKind } from 'vscode/vscode/vs/platform/files/common/files';
|
|
20
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
22
|
+
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
21
23
|
import { WorkbenchCompressibleObjectTree } from 'vscode/vscode/vs/platform/list/browser/listService';
|
|
22
24
|
import { dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
23
25
|
import { createMatches } from 'vscode/vscode/vs/base/common/filters';
|
|
24
26
|
import { DebugContentProvider } from '../common/debugContentProvider.js';
|
|
25
|
-
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label';
|
|
27
|
+
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service';
|
|
26
28
|
import { registerAction2, MenuId } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
27
29
|
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
28
|
-
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views';
|
|
29
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener';
|
|
30
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
31
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
|
|
32
|
-
import { IPathService } from 'vscode/vscode/vs/workbench/services/path/common/pathService';
|
|
30
|
+
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
31
|
+
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
32
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
33
|
+
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
34
|
+
import { IPathService } from 'vscode/vscode/vs/workbench/services/path/common/pathService.service';
|
|
33
35
|
import { TreeFindMode } from 'vscode/vscode/vs/base/browser/ui/tree/abstractTree';
|
|
34
36
|
|
|
35
37
|
const NEW_STYLE_COMPRESS = true;
|
|
@@ -6,14 +6,15 @@ import { toAction } from 'vscode/vscode/vs/base/common/actions';
|
|
|
6
6
|
import { CancellationError, ErrorNoTelemetry } from 'vscode/vscode/vs/base/common/errors';
|
|
7
7
|
import { createErrorWithActions } from 'vscode/vscode/vs/base/common/errorMessage';
|
|
8
8
|
import { isUri, formatPII } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
9
|
-
import { IExtensionHostDebugService } from 'vscode/vscode/vs/platform/debug/common/extensionHostDebug';
|
|
9
|
+
import { IExtensionHostDebugService } from 'vscode/vscode/vs/platform/debug/common/extensionHostDebug.service';
|
|
10
10
|
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
11
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener';
|
|
11
|
+
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
12
12
|
import { dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
13
|
-
import
|
|
14
|
-
import '
|
|
13
|
+
import 'vscode/vscode/vs/platform/notification/common/notification';
|
|
14
|
+
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
15
|
+
import { IDialogService } from 'vscode/vscode/vs/platform/dialogs/common/dialogs.service';
|
|
15
16
|
import { Schemas } from 'vscode/vscode/vs/base/common/network';
|
|
16
|
-
import
|
|
17
|
+
import Severity$1 from 'vscode/vscode/vs/base/common/severity';
|
|
17
18
|
|
|
18
19
|
let RawDebugSession = class RawDebugSession {
|
|
19
20
|
constructor(debugAdapter, dbgr, sessionId, name, extensionHostDebugService, openerService, notificationService, dialogSerivce) {
|
|
@@ -515,7 +516,7 @@ let RawDebugSession = class RawDebugSession {
|
|
|
515
516
|
let result = await this.launchVsCode(request.arguments);
|
|
516
517
|
if (!result.success) {
|
|
517
518
|
const { confirmed } = await this.dialogSerivce.confirm({
|
|
518
|
-
type: Severity.Warning,
|
|
519
|
+
type: Severity$1.Warning,
|
|
519
520
|
message: ( localizeWithPath(
|
|
520
521
|
'vs/workbench/contrib/debug/browser/rawDebugSession',
|
|
521
522
|
'canNotStart',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
|
-
import { clearNode, Dimension, isActiveElement, append, getWindow, createStyleSheet, addStandardDisposableListener, EventType, getActiveWindow
|
|
2
|
+
import { $ as $$1, clearNode, Dimension, isActiveElement, append, getWindow, createStyleSheet, addStandardDisposableListener, EventType, getActiveWindow } from 'vscode/vscode/vs/base/browser/dom';
|
|
3
3
|
import { status } from 'vscode/vscode/vs/base/browser/ui/aria/aria';
|
|
4
4
|
import { MOUSE_CURSOR_TEXT_CSS_CLASS_NAME } from 'vscode/vscode/vs/base/browser/ui/mouseCursor/mouseCursor';
|
|
5
5
|
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
@@ -12,7 +12,7 @@ import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
|
12
12
|
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
13
13
|
import './media/repl.css.js';
|
|
14
14
|
import { isCodeEditor } from 'vscode/vscode/vs/editor/browser/editorBrowser';
|
|
15
|
-
import {
|
|
15
|
+
import { EditorAction, registerEditorAction } from 'vscode/vscode/vs/editor/browser/editorExtensions';
|
|
16
16
|
import { ICodeEditorService } from 'vscode/vscode/vs/editor/browser/services/codeEditorService';
|
|
17
17
|
import { CodeEditorWidget } from 'vscode/vscode/vs/editor/browser/widget/codeEditor/codeEditorWidget';
|
|
18
18
|
import { EDITOR_FONT_DEFAULTS } from 'vscode/vscode/vs/editor/common/config/editorOptions';
|
|
@@ -25,20 +25,22 @@ import { ITextResourcePropertiesService } from 'vscode/vscode/vs/editor/common/s
|
|
|
25
25
|
import { SuggestController } from 'vscode/vscode/vs/editor/contrib/suggest/browser/suggestController';
|
|
26
26
|
import { localizeWithPath, localize2WithPath } from 'vscode/vscode/vs/nls';
|
|
27
27
|
import { createAndFillInContextMenuActions } from 'vscode/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
28
|
-
import { MenuId,
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
28
|
+
import { MenuId, registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
29
|
+
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
|
|
30
|
+
import { IClipboardService } from 'vscode/vscode/vs/platform/clipboard/common/clipboardService.service';
|
|
31
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
32
|
+
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
33
|
+
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
34
|
+
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
33
35
|
import { registerAndCreateHistoryNavigationContext } from 'vscode/vscode/vs/platform/history/browser/contextScopedHistoryWidget';
|
|
34
36
|
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
35
37
|
import { ServiceCollection } from 'vscode/vscode/vs/platform/instantiation/common/serviceCollection';
|
|
36
|
-
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding';
|
|
38
|
+
import { IKeybindingService } from 'vscode/vscode/vs/platform/keybinding/common/keybinding.service';
|
|
37
39
|
import { WorkbenchAsyncDataTree } from 'vscode/vscode/vs/platform/list/browser/listService';
|
|
38
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log';
|
|
39
|
-
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener';
|
|
40
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
41
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry';
|
|
40
|
+
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
41
|
+
import { IOpenerService } from 'vscode/vscode/vs/platform/opener/common/opener.service';
|
|
42
|
+
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
43
|
+
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
42
44
|
import { resolveColorValue } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
43
45
|
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
44
46
|
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
@@ -50,22 +52,24 @@ import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
|
50
52
|
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
51
53
|
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
52
54
|
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
53
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
55
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
54
56
|
import { FilterViewPane, ViewAction } from 'vscode/vscode/vs/workbench/browser/parts/views/viewPane';
|
|
55
|
-
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views';
|
|
56
|
-
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService';
|
|
57
|
+
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
58
|
+
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
57
59
|
import { getSimpleEditorOptions, getSimpleCodeEditorWidgetOptions } from 'vscode/vscode/vs/workbench/contrib/codeEditor/browser/simpleEditorOptions';
|
|
58
60
|
import { FocusSessionActionViewItem } from './debugActionViewItems.js';
|
|
59
61
|
import { debugConsoleEvaluationPrompt, debugConsoleClearAll } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
60
62
|
import { LinkDetector } from './linkDetector.js';
|
|
61
63
|
import { ReplFilter } from './replFilter.js';
|
|
62
64
|
import { ReplDelegate, ReplVariablesRenderer, ReplOutputElementRenderer, ReplEvaluationInputsRenderer, ReplGroupRenderer, ReplEvaluationResultsRenderer, ReplRawObjectsRenderer, ReplDataSource, ReplAccessibilityProvider } from './replViewer.js';
|
|
63
|
-
import { DEBUG_SCHEME, CONTEXT_MULTI_SESSION_REPL, CONTEXT_IN_DEBUG_REPL,
|
|
65
|
+
import { DEBUG_SCHEME, CONTEXT_MULTI_SESSION_REPL, CONTEXT_IN_DEBUG_REPL, REPL_VIEW_ID, CONTEXT_DEBUG_STATE, getStateLabel } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
66
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
64
67
|
import { Variable } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
65
|
-
import {
|
|
66
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
68
|
+
import { ReplGroup, ReplEvaluationResult } from 'vscode/vscode/vs/workbench/contrib/debug/common/replModel';
|
|
69
|
+
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
67
70
|
import { registerNavigableContainer } from 'vscode/vscode/vs/workbench/browser/actions/widgetNavigationCommands';
|
|
68
|
-
import {
|
|
71
|
+
import { AccessibilitySignal } from 'vscode/vscode/vs/platform/accessibilitySignal/browser/accessibilitySignalService';
|
|
72
|
+
import { IAccessibilitySignalService } from 'vscode/vscode/vs/platform/accessibilitySignal/browser/accessibilitySignalService.service';
|
|
69
73
|
|
|
70
74
|
var Repl_1, ReplOptions_1;
|
|
71
75
|
const $ = $$1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';
|
|
2
|
-
import {
|
|
2
|
+
import { $ as $$1, append, clearNode, addDisposableListener } from 'vscode/vscode/vs/base/browser/dom';
|
|
3
3
|
import { CountBadge } from 'vscode/vscode/vs/base/browser/ui/countBadge/countBadge';
|
|
4
4
|
import { HighlightedLabel } from 'vscode/vscode/vs/base/browser/ui/highlightedlabel/highlightedLabel';
|
|
5
5
|
import { CachedListVirtualDelegate } from 'vscode/vscode/vs/base/browser/ui/list/list';
|
|
@@ -8,18 +8,18 @@ import { dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
|
8
8
|
import { basename } from 'vscode/vscode/vs/base/common/path';
|
|
9
9
|
import Severity$1 from 'vscode/vscode/vs/base/common/severity';
|
|
10
10
|
import { localizeWithPath } from 'vscode/vscode/vs/nls';
|
|
11
|
-
import { IContextViewService } from 'vscode/vscode/vs/platform/contextview/browser/contextView';
|
|
12
|
-
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label';
|
|
11
|
+
import { IContextViewService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
12
|
+
import { ILabelService } from 'vscode/vscode/vs/platform/label/common/label.service';
|
|
13
13
|
import { defaultCountBadgeStyles } from 'vscode/vscode/vs/platform/theme/browser/defaultStyles';
|
|
14
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
14
|
+
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
15
15
|
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
16
|
-
import {
|
|
16
|
+
import { renderExpressionValue, AbstractExpressionsRenderer, renderVariable } from 'vscode/vscode/vs/workbench/contrib/debug/browser/baseDebugView';
|
|
17
17
|
import { handleANSIOutput } from './debugANSIHandling.js';
|
|
18
18
|
import { debugConsoleEvaluationInput } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
19
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
19
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
20
20
|
import { Variable } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
21
21
|
import { ReplVariableElement, ReplEvaluationResult, ReplOutputElement, ReplEvaluationInput, ReplGroup, RawObjectReplElement } from 'vscode/vscode/vs/workbench/contrib/debug/common/replModel';
|
|
22
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
22
|
+
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
23
23
|
import { setupCustomHover } from 'vscode/vscode/vs/base/browser/ui/hover/updatableHoverWidget';
|
|
24
24
|
import { getDefaultHoverDelegate } from 'vscode/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
25
25
|
|
|
@@ -11,13 +11,13 @@ import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
|
11
11
|
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
12
12
|
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
13
13
|
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
14
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
15
|
-
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
14
|
+
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
15
|
+
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
|
|
16
16
|
import { STATUS_BAR_FOREGROUND, STATUS_BAR_BORDER, COMMAND_CENTER_BACKGROUND } from 'vscode/vscode/vs/workbench/common/theme';
|
|
17
17
|
import { DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
18
|
-
import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
19
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
20
|
-
import { ILayoutService } from 'vscode/vscode/vs/platform/layout/browser/layoutService';
|
|
18
|
+
import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar.service';
|
|
19
|
+
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
20
|
+
import { ILayoutService } from 'vscode/vscode/vs/platform/layout/browser/layoutService.service';
|
|
21
21
|
|
|
22
22
|
const STATUS_BAR_DEBUGGING_BACKGROUND = registerColor('statusBar.debuggingBackground', {
|
|
23
23
|
dark: '#CC6633',
|