@codingame/monaco-vscode-debug-service-override 12.0.0 → 13.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -1
- package/index.js +6 -6
- package/package.json +25 -20
- 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 +18 -18
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.d.ts +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +46 -46
- package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +19 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.d.ts +11 -11
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +34 -34
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.d.ts +17 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +26 -26
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.d.ts +15 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +34 -34
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +23 -23
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.d.ts +13 -13
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +55 -55
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.d.ts +10 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +36 -36
- package/vscode/src/vs/workbench/contrib/debug/browser/debugMemory.d.ts +6 -6
- 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 +9 -9
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.d.ts +26 -26
- package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +43 -43
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.d.ts +24 -24
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +39 -39
- 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 +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.d.ts +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +21 -21
- 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 +43 -43
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.d.ts +18 -18
- package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +23 -23
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.d.ts +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +41 -41
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +24 -24
- 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 +33 -33
- 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 +17 -17
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.d.ts +26 -26
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +69 -69
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.d.ts +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +6 -6
- 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 +19 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.d.ts +8 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.d.ts +7 -7
- package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +21 -21
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.d.ts +23 -23
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +38 -38
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.d.ts +19 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +23 -23
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.d.ts +15 -15
- package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +24 -24
- 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 +14 -14
- 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 +6 -6
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +6 -6
- 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 +16 -16
- 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 +7 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
2
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
3
|
-
import { IStatusbarService } from "vscode/vscode/vs/workbench/services/statusbar/browser/statusbar.service";
|
|
4
|
-
import { IWorkbenchContribution } from "vscode/vscode/vs/workbench/common/contributions";
|
|
1
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
2
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
3
|
+
import { IStatusbarService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/statusbar/browser/statusbar.service";
|
|
4
|
+
import { IWorkbenchContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions";
|
|
5
5
|
export declare class DebugStatusContribution implements IWorkbenchContribution {
|
|
6
6
|
private readonly statusBarService;
|
|
7
7
|
private readonly debugService;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
4
|
-
import { dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
5
|
-
import { State } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
6
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
7
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
8
|
-
import { StatusbarAlignment } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
9
|
-
import { IStatusbarService } from 'vscode/vscode/vs/workbench/services/statusbar/browser/statusbar.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
4
|
+
import { dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
5
|
+
import { State } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
6
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
7
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
8
|
+
import { StatusbarAlignment } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/statusbar/browser/statusbar';
|
|
9
|
+
import { IStatusbarService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/statusbar/browser/statusbar.service';
|
|
10
10
|
|
|
11
11
|
let DebugStatusContribution = class DebugStatusContribution {
|
|
12
12
|
constructor(statusBarService, debugService, configurationService) {
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { IDisposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
2
|
-
import { ICommandService } from "vscode/vscode/vs/platform/commands/common/commands.service";
|
|
3
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
4
|
-
import { IDialogService } from "vscode/vscode/vs/platform/dialogs/common/dialogs.service";
|
|
5
|
-
import { IMarkerService } from "vscode/vscode/vs/platform/markers/common/markers.service";
|
|
6
|
-
import { IProgressService } from "vscode/vscode/vs/platform/progress/common/progress.service";
|
|
7
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
8
|
-
import { IWorkspace, IWorkspaceFolder } from "vscode/vscode/vs/platform/workspace/common/workspace";
|
|
9
|
-
import { ITaskIdentifier } from "vscode/vscode/vs/workbench/contrib/tasks/common/tasks";
|
|
1
|
+
import { IDisposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
2
|
+
import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
|
|
3
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
4
|
+
import { IDialogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/dialogs/common/dialogs.service";
|
|
5
|
+
import { IMarkerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers.service";
|
|
6
|
+
import { IProgressService } from "@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress.service";
|
|
7
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
8
|
+
import { IWorkspace, IWorkspaceFolder } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace";
|
|
9
|
+
import { ITaskIdentifier } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/tasks";
|
|
10
10
|
import { ITaskSummary } from "@codingame/monaco-vscode-625898ab-0e33-5b7f-a3ae-29c10271dc1c-common/vscode/vs/workbench/contrib/tasks/common/taskService";
|
|
11
|
-
import { ITaskService } from "vscode/vscode/vs/workbench/contrib/tasks/common/taskService.service";
|
|
12
|
-
import { IViewsService } from "vscode/vscode/vs/workbench/services/views/common/viewsService.service";
|
|
11
|
+
import { ITaskService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskService.service";
|
|
12
|
+
import { IViewsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service";
|
|
13
13
|
export declare enum TaskRunResult {
|
|
14
14
|
Failure = 0,
|
|
15
15
|
Success = 1
|
|
@@ -31,6 +31,6 @@ export declare class DebugTaskRunner implements IDisposable {
|
|
|
31
31
|
cancel(): void;
|
|
32
32
|
dispose(): void;
|
|
33
33
|
runTaskAndCheckErrors(root: IWorkspaceFolder | IWorkspace | undefined, taskId: string | ITaskIdentifier | undefined): Promise<TaskRunResult>;
|
|
34
|
-
runTask(root: IWorkspace | IWorkspaceFolder | undefined, taskId: string | ITaskIdentifier | undefined, token?: import("vscode/vscode/vs/base/common/cancellation").CancellationToken): Promise<IRunnerTaskSummary | null>;
|
|
34
|
+
runTask(root: IWorkspace | IWorkspaceFolder | undefined, taskId: string | ITaskIdentifier | undefined, token?: import("@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation").CancellationToken): Promise<IRunnerTaskSummary | null>;
|
|
35
35
|
}
|
|
36
36
|
export {};
|
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
4
|
-
import { disposableTimeout } from 'vscode/vscode/vs/base/common/async';
|
|
5
|
-
import { CancellationTokenSource } from 'vscode/vscode/vs/base/common/cancellation';
|
|
6
|
-
import { createErrorWithActions } from 'vscode/vscode/vs/base/common/errorMessage';
|
|
7
|
-
import { Event, Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
8
|
-
import { DisposableStore } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
9
|
-
import Severity from 'vscode/vscode/vs/base/common/severity';
|
|
10
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
11
|
-
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
12
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
13
|
-
import { IDialogService } from 'vscode/vscode/vs/platform/dialogs/common/dialogs.service';
|
|
14
|
-
import { MarkerSeverity } from 'vscode/vscode/vs/platform/markers/common/markers';
|
|
15
|
-
import { IMarkerService } from 'vscode/vscode/vs/platform/markers/common/markers.service';
|
|
16
|
-
import { ProgressLocation } from 'vscode/vscode/vs/platform/progress/common/progress';
|
|
17
|
-
import { IProgressService } from 'vscode/vscode/vs/platform/progress/common/progress.service';
|
|
18
|
-
import { StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
19
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
4
|
+
import { disposableTimeout } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
5
|
+
import { CancellationTokenSource } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation';
|
|
6
|
+
import { createErrorWithActions } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errorMessage';
|
|
7
|
+
import { Event, Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
8
|
+
import { DisposableStore } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
9
|
+
import Severity from '@codingame/monaco-vscode-api/vscode/vs/base/common/severity';
|
|
10
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
11
|
+
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
12
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
13
|
+
import { IDialogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/dialogs/common/dialogs.service';
|
|
14
|
+
import { MarkerSeverity } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers';
|
|
15
|
+
import { IMarkerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/markers/common/markers.service';
|
|
16
|
+
import { ProgressLocation } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress';
|
|
17
|
+
import { IProgressService } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress.service';
|
|
18
|
+
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
19
|
+
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
20
20
|
import { DEBUG_CONFIGURE_COMMAND_ID, DEBUG_CONFIGURE_LABEL } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugCommands';
|
|
21
21
|
import { Markers } from '@codingame/monaco-vscode-2448342b-297f-5823-9f41-f18eef0f6ee8-common/vscode/vs/workbench/contrib/markers/common/markers';
|
|
22
|
-
import { TaskEventKind, CustomTask, ConfiguringTask } from 'vscode/vscode/vs/workbench/contrib/tasks/common/tasks';
|
|
23
|
-
import { ITaskService } from 'vscode/vscode/vs/workbench/contrib/tasks/common/taskService.service';
|
|
24
|
-
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
22
|
+
import { TaskEventKind, CustomTask, ConfiguringTask } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/tasks';
|
|
23
|
+
import { ITaskService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskService.service';
|
|
24
|
+
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
25
25
|
|
|
26
26
|
const onceFilter = (event, filter) => Event.once(Event.filter(event, filter));
|
|
27
27
|
var TaskRunResult;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { IWorkbenchContribution } from "vscode/vscode/vs/workbench/common/contributions";
|
|
2
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
3
|
-
import { IHostService } from "vscode/vscode/vs/workbench/services/host/browser/host.service";
|
|
4
|
-
import { ITitleService } from "vscode/vscode/vs/workbench/services/title/browser/titleService.service";
|
|
1
|
+
import { IWorkbenchContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions";
|
|
2
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
3
|
+
import { IHostService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service";
|
|
4
|
+
import { ITitleService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/title/browser/titleService.service";
|
|
5
5
|
export declare class DebugTitleContribution implements IWorkbenchContribution {
|
|
6
6
|
private toDispose;
|
|
7
7
|
constructor(debugService: IDebugService, hostService: IHostService, titleService: ITitleService);
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { State } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
4
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
5
|
-
import { dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
6
|
-
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
|
|
7
|
-
import { ITitleService } from 'vscode/vscode/vs/workbench/services/title/browser/titleService.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { State } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
4
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
5
|
+
import { dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
6
|
+
import { IHostService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service';
|
|
7
|
+
import { ITitleService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/title/browser/titleService.service';
|
|
8
8
|
|
|
9
9
|
let DebugTitleContribution = class DebugTitleContribution {
|
|
10
10
|
constructor(debugService, hostService, titleService) {
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { IActionViewItem } from "vscode/vscode/vs/base/browser/ui/actionbar/actionbar";
|
|
2
|
-
import { DisposableStore } from "vscode/vscode/vs/base/common/lifecycle";
|
|
3
|
-
import { ServicesAccessor } from "vscode/vscode/vs/editor/browser/editorExtensions";
|
|
1
|
+
import { IActionViewItem } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar";
|
|
2
|
+
import { DisposableStore } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
3
|
+
import { ServicesAccessor } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorExtensions";
|
|
4
4
|
import { IDropdownWithPrimaryActionViewItemOptions } from "@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common/vscode/vs/platform/actions/browser/dropdownWithPrimaryActionViewItem";
|
|
5
|
-
import { MenuItemAction } from "vscode/vscode/vs/platform/actions/common/actions";
|
|
6
|
-
import { IMenuService } from "vscode/vscode/vs/platform/actions/common/actions.service";
|
|
7
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
8
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
9
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
10
|
-
import { INotificationService } from "vscode/vscode/vs/platform/notification/common/notification.service";
|
|
11
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
12
|
-
import { ITelemetryService } from "vscode/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
13
|
-
import { Themable } from "vscode/vscode/vs/platform/theme/common/themeService";
|
|
14
|
-
import { IThemeService } from "vscode/vscode/vs/platform/theme/common/themeService.service";
|
|
15
|
-
import { IWorkbenchContribution } from "vscode/vscode/vs/workbench/common/contributions";
|
|
16
|
-
import { IWorkbenchLayoutService } from "vscode/vscode/vs/workbench/services/layout/browser/layoutService.service";
|
|
17
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
5
|
+
import { MenuItemAction } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions";
|
|
6
|
+
import { IMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service";
|
|
7
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
8
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
9
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
10
|
+
import { INotificationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service";
|
|
11
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
12
|
+
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
13
|
+
import { Themable } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService";
|
|
14
|
+
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
15
|
+
import { IWorkbenchContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions";
|
|
16
|
+
import { IWorkbenchLayoutService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service";
|
|
17
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
18
18
|
export declare class DebugToolBar extends Themable implements IWorkbenchContribution {
|
|
19
19
|
private readonly notificationService;
|
|
20
20
|
private readonly telemetryService;
|
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { $, append, addDisposableGenericMouseUpListener, getWindow, addDisposableGenericMouseDownListener, addDisposableGenericMouseMoveListener, show, hide } from 'vscode/vscode/vs/base/browser/dom';
|
|
4
|
-
import { StandardMouseEvent } from 'vscode/vscode/vs/base/browser/mouseEvent';
|
|
5
|
-
import { PixelRatio } from 'vscode/vscode/vs/base/browser/pixelRatio';
|
|
6
|
-
import { ActionBar, ActionsOrientation } from 'vscode/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
7
|
-
import { mainWindow } from 'vscode/vscode/vs/base/browser/window';
|
|
8
|
-
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
9
|
-
import { equals } from 'vscode/vscode/vs/base/common/arrays';
|
|
10
|
-
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
11
|
-
import { Codicon } from 'vscode/vscode/vs/base/common/codicons';
|
|
12
|
-
import { isCancellationError } from 'vscode/vscode/vs/base/common/errors';
|
|
13
|
-
import { DisposableStore, MutableDisposable, markAsSingleton, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
14
|
-
import { platform, Platform } from 'vscode/vscode/vs/base/common/platform';
|
|
15
|
-
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
16
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { $, append, addDisposableGenericMouseUpListener, getWindow, addDisposableGenericMouseDownListener, addDisposableGenericMouseMoveListener, show, hide } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { StandardMouseEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/mouseEvent';
|
|
5
|
+
import { PixelRatio } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/pixelRatio';
|
|
6
|
+
import { ActionBar, ActionsOrientation } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar';
|
|
7
|
+
import { mainWindow } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/window';
|
|
8
|
+
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
9
|
+
import { equals } from '@codingame/monaco-vscode-api/vscode/vs/base/common/arrays';
|
|
10
|
+
import { RunOnceScheduler } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
11
|
+
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
12
|
+
import { isCancellationError } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
|
|
13
|
+
import { DisposableStore, MutableDisposable, markAsSingleton, dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
14
|
+
import { platform, Platform } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
|
|
15
|
+
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
16
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
17
17
|
import { DropdownWithPrimaryActionViewItem } from '@codingame/monaco-vscode-b4efa70b-52b9-5670-ab5c-f10b10b6834e-common/vscode/vs/platform/actions/browser/dropdownWithPrimaryActionViewItem';
|
|
18
|
-
import { createActionViewItem, getFlatActionBarActions } from 'vscode/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
19
|
-
import { MenuId, MenuRegistry } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
20
|
-
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
|
|
21
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
22
|
-
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
23
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
24
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
25
|
-
import { INotificationService } from 'vscode/vscode/vs/platform/notification/common/notification.service';
|
|
26
|
-
import { StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
27
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
28
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
29
|
-
import 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
30
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
31
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
32
|
-
import { widgetShadow, widgetBorder } from '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 { Themable } from 'vscode/vscode/vs/platform/theme/common/themeService';
|
|
41
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
42
|
-
import { TitleBarSetting } from 'vscode/vscode/vs/platform/window/common/window';
|
|
18
|
+
import { createActionViewItem, getFlatActionBarActions } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
19
|
+
import { MenuId, MenuRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
20
|
+
import { IMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service';
|
|
21
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
22
|
+
import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
|
|
23
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
24
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
25
|
+
import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
|
|
26
|
+
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
27
|
+
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
28
|
+
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
29
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
30
|
+
import '@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 { widgetShadow, widgetBorder } from '@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 { Themable } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService';
|
|
41
|
+
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
42
|
+
import { TitleBarSetting } from '@codingame/monaco-vscode-api/vscode/vs/platform/window/common/window';
|
|
43
43
|
import { LayoutSettings, Parts, EditorTabsMode } from '@codingame/monaco-vscode-e571cbbb-526b-5d8b-92c5-a0437d2dabb3-common/vscode/vs/workbench/services/layout/browser/layoutService';
|
|
44
|
-
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
45
|
-
import { State, 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';
|
|
46
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
44
|
+
import { IWorkbenchLayoutService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
45
|
+
import { State, 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 '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
46
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
47
47
|
import { FocusSessionActionViewItem } from './debugActionViewItems.js';
|
|
48
48
|
import { debugToolBarBackground, debugToolBarBorder } from '@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common/vscode/vs/workbench/contrib/debug/browser/debugColors';
|
|
49
49
|
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 '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugCommands';
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import { IActionViewItem } from "vscode/vscode/vs/base/browser/ui/actionbar/actionbar";
|
|
2
|
-
import { IAction } from "vscode/vscode/vs/base/common/actions";
|
|
3
|
-
import { IDisposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
4
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
5
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
6
|
-
import { IContextMenuService } from "vscode/vscode/vs/platform/contextview/browser/contextView.service";
|
|
7
|
-
import { IContextViewService } from "vscode/vscode/vs/platform/contextview/browser/contextView.service";
|
|
8
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
9
|
-
import { IProgressService } from "vscode/vscode/vs/platform/progress/common/progress.service";
|
|
10
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
11
|
-
import { ITelemetryService } from "vscode/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
12
|
-
import { IThemeService } from "vscode/vscode/vs/platform/theme/common/themeService.service";
|
|
13
|
-
import { IWorkspaceContextService } from "vscode/vscode/vs/platform/workspace/common/workspace.service";
|
|
1
|
+
import { IActionViewItem } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionbar";
|
|
2
|
+
import { IAction } from "@codingame/monaco-vscode-api/vscode/vs/base/common/actions";
|
|
3
|
+
import { IDisposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
4
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
5
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
6
|
+
import { IContextMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
7
|
+
import { IContextViewService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
8
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
9
|
+
import { IProgressService } from "@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress.service";
|
|
10
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
11
|
+
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
12
|
+
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
13
|
+
import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
|
|
14
14
|
import { ViewPane } from "@codingame/monaco-vscode-65619f8f-0eab-5d8b-855a-43b6353fe527-common/vscode/vs/workbench/browser/parts/views/viewPane";
|
|
15
15
|
import { ViewPaneContainer } from "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/parts/views/viewPaneContainer";
|
|
16
|
-
import { IViewDescriptorService } from "vscode/vscode/vs/workbench/common/views.service";
|
|
17
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
18
|
-
import { IExtensionService } from "vscode/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
19
|
-
import { IWorkbenchLayoutService } from "vscode/vscode/vs/workbench/services/layout/browser/layoutService.service";
|
|
20
|
-
import { IBaseActionViewItemOptions } from "vscode/vscode/vs/base/browser/ui/actionbar/actionViewItems";
|
|
16
|
+
import { IViewDescriptorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service";
|
|
17
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
18
|
+
import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
19
|
+
import { IWorkbenchLayoutService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service";
|
|
20
|
+
import { IBaseActionViewItemOptions } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/actionbar/actionViewItems";
|
|
21
21
|
export declare class DebugViewPaneContainer extends ViewPaneContainer {
|
|
22
22
|
private readonly progressService;
|
|
23
23
|
private readonly debugService;
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { DisposableStore, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { DisposableStore, dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
4
4
|
import './media/debugViewlet.css.js';
|
|
5
|
-
import { localize, localize2 } from 'vscode/vscode/vs/nls';
|
|
6
|
-
import { createActionViewItem } from 'vscode/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
7
|
-
import { MenuRegistry, MenuId, registerAction2, Action2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
8
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
9
|
-
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
10
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
11
|
-
import { IContextMenuService, IContextViewService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
12
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
13
|
-
import { IProgressService } from 'vscode/vscode/vs/platform/progress/common/progress.service';
|
|
14
|
-
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
15
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
16
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
17
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
18
|
-
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
|
|
5
|
+
import { localize, localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
6
|
+
import { createActionViewItem } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/browser/menuEntryActionViewItem';
|
|
7
|
+
import { MenuRegistry, MenuId, registerAction2, Action2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
8
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
9
|
+
import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
|
|
10
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
11
|
+
import { IContextMenuService, IContextViewService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service';
|
|
12
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
13
|
+
import { IProgressService } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress.service';
|
|
14
|
+
import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
15
|
+
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
16
|
+
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
17
|
+
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
18
|
+
import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
|
|
19
19
|
import { ViewPaneContainer, ViewsSubMenu } from '@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/parts/views/viewPaneContainer';
|
|
20
|
-
import { WorkbenchStateContext } from 'vscode/vscode/vs/workbench/common/contextkeys';
|
|
21
|
-
import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views.service';
|
|
22
|
-
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
20
|
+
import { WorkbenchStateContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
|
|
21
|
+
import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
|
|
22
|
+
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
23
23
|
import { StartDebugActionViewItem, FocusSessionActionViewItem } from './debugActionViewItems.js';
|
|
24
24
|
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 '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugCommands';
|
|
25
25
|
import { debugConfigure } from '@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
26
26
|
import { createDisconnectMenuItemAction } from './debugToolBar.js';
|
|
27
27
|
import { WelcomeView } from './welcomeView.js';
|
|
28
|
-
import { VIEWLET_ID, CONTEXT_DEBUG_UX_KEY, State, BREAKPOINTS_VIEW_ID, CONTEXT_DEBUG_UX, CONTEXT_DEBUG_STATE, getStateLabel, CONTEXT_DEBUGGERS_AVAILABLE, EDITOR_CONTRIBUTION_ID, REPL_VIEW_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
29
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
30
|
-
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
31
|
-
import { IWorkbenchLayoutService } from 'vscode/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
28
|
+
import { VIEWLET_ID, CONTEXT_DEBUG_UX_KEY, State, BREAKPOINTS_VIEW_ID, CONTEXT_DEBUG_UX, CONTEXT_DEBUG_STATE, getStateLabel, CONTEXT_DEBUGGERS_AVAILABLE, EDITOR_CONTRIBUTION_ID, REPL_VIEW_ID } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
29
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
30
|
+
import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
31
|
+
import { IWorkbenchLayoutService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/layout/browser/layoutService.service';
|
|
32
32
|
|
|
33
33
|
let DebugViewPaneContainer = class DebugViewPaneContainer extends ViewPaneContainer {
|
|
34
34
|
constructor(layoutService, telemetryService, progressService, debugService, instantiationService, contextService, storageService, themeService, contextMenuService, extensionService, configurationService, contextViewService, contextKeyService, viewDescriptorService) {
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { Dimension } from "vscode/vscode/vs/base/browser/dom";
|
|
2
|
-
import { BareFontInfo } from "vscode/vscode/vs/editor/common/config/fontInfo";
|
|
3
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
4
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
5
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
6
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
7
|
-
import { ITelemetryService } from "vscode/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
8
|
-
import { IThemeService } from "vscode/vscode/vs/platform/theme/common/themeService.service";
|
|
1
|
+
import { Dimension } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/dom";
|
|
2
|
+
import { BareFontInfo } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/config/fontInfo";
|
|
3
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
4
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
5
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
6
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
7
|
+
import { ITelemetryService } from "@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service";
|
|
8
|
+
import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
|
|
9
9
|
import { EditorPane } from "@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/parts/editor/editorPane";
|
|
10
|
-
import { IWorkbenchContribution } from "vscode/vscode/vs/workbench/common/contributions";
|
|
11
|
-
import { IDebugSession } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
12
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
13
|
-
import { IEditorService } from "vscode/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
14
|
-
import { IEditorGroup } from "vscode/vscode/vs/workbench/services/editor/common/editorGroupsService";
|
|
10
|
+
import { IWorkbenchContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions";
|
|
11
|
+
import { IDebugSession } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
12
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
13
|
+
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
14
|
+
import { IEditorGroup } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService";
|
|
15
15
|
export declare class DisassemblyView extends EditorPane {
|
|
16
16
|
private readonly _configurationService;
|
|
17
17
|
private readonly _instantiationService;
|
|
@@ -35,7 +35,7 @@ export declare class DisassemblyView extends EditorPane {
|
|
|
35
35
|
get focusedInstructionAddress(): bigint | undefined;
|
|
36
36
|
get isSourceCodeRender(): boolean;
|
|
37
37
|
get debugSession(): IDebugSession | undefined;
|
|
38
|
-
get onDidChangeStackFrame(): import("vscode/vscode/vs/base/common/event").Event<void>;
|
|
38
|
+
get onDidChangeStackFrame(): import("@codingame/monaco-vscode-api/vscode/vs/base/common/event").Event<void>;
|
|
39
39
|
get focusedAddressAndOffset(): {
|
|
40
40
|
reference: string;
|
|
41
41
|
offset: number;
|
|
@@ -1,50 +1,50 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { PixelRatio } from 'vscode/vscode/vs/base/browser/pixelRatio';
|
|
4
|
-
import { append, $, addStandardDisposableListener } from 'vscode/vscode/vs/base/browser/dom';
|
|
5
|
-
import { binarySearch2 } from 'vscode/vscode/vs/base/common/arrays';
|
|
6
|
-
import { Emitter } from 'vscode/vscode/vs/base/common/event';
|
|
7
|
-
import { dispose, Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
8
|
-
import { isAbsolute } from 'vscode/vscode/vs/base/common/path';
|
|
9
|
-
import { Constants } from 'vscode/vscode/vs/base/common/uint';
|
|
10
|
-
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
11
|
-
import { applyFontInfo } from 'vscode/vscode/vs/editor/browser/config/domFontInfo';
|
|
12
|
-
import { isCodeEditor } from 'vscode/vscode/vs/editor/browser/editorBrowser';
|
|
13
|
-
import { BareFontInfo } from 'vscode/vscode/vs/editor/common/config/fontInfo';
|
|
14
|
-
import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
15
|
-
import { StringBuilder } from 'vscode/vscode/vs/editor/common/core/stringBuilder';
|
|
16
|
-
import { ITextModelService } from 'vscode/vscode/vs/editor/common/services/resolverService';
|
|
17
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
18
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
19
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
20
|
-
import { TextEditorSelectionRevealType } from 'vscode/vscode/vs/platform/editor/common/editor';
|
|
21
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
22
|
-
import { WorkbenchTable } from 'vscode/vscode/vs/platform/list/browser/listService';
|
|
23
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
24
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
25
|
-
import { ITelemetryService } from 'vscode/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
26
|
-
import 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
27
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
28
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
29
|
-
import { editorBackground } from 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
30
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
31
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
32
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
33
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
34
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
35
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
36
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
37
|
-
import { IThemeService } from 'vscode/vscode/vs/platform/theme/common/themeService.service';
|
|
38
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { PixelRatio } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/pixelRatio';
|
|
4
|
+
import { append, $, addStandardDisposableListener } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
5
|
+
import { binarySearch2 } from '@codingame/monaco-vscode-api/vscode/vs/base/common/arrays';
|
|
6
|
+
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
7
|
+
import { dispose, Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
8
|
+
import { isAbsolute } from '@codingame/monaco-vscode-api/vscode/vs/base/common/path';
|
|
9
|
+
import { Constants } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uint';
|
|
10
|
+
import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
|
|
11
|
+
import { applyFontInfo } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/config/domFontInfo';
|
|
12
|
+
import { isCodeEditor } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser';
|
|
13
|
+
import { BareFontInfo } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/fontInfo';
|
|
14
|
+
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
15
|
+
import { StringBuilder } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/stringBuilder';
|
|
16
|
+
import { ITextModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/resolverService';
|
|
17
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
18
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
19
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
20
|
+
import { TextEditorSelectionRevealType } from '@codingame/monaco-vscode-api/vscode/vs/platform/editor/common/editor';
|
|
21
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
22
|
+
import { WorkbenchTable } from '@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService';
|
|
23
|
+
import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
|
|
24
|
+
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
25
|
+
import { ITelemetryService } from '@codingame/monaco-vscode-api/vscode/vs/platform/telemetry/common/telemetry.service';
|
|
26
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
27
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
28
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
29
|
+
import { editorBackground } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
30
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
31
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
32
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
33
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
34
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
35
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
36
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
37
|
+
import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
|
|
38
|
+
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
39
39
|
import { EditorPane } from '@codingame/monaco-vscode-9e888134-1a6f-58d9-b0e6-0fc047448366-common/vscode/vs/workbench/browser/parts/editor/editorPane';
|
|
40
40
|
import { topStackFrameColor, focusedStackFrameColor } from '@codingame/monaco-vscode-0b087f42-a5a3-5eb9-9bfd-1eebc1bba163-common/vscode/vs/workbench/contrib/debug/browser/callStackEditorContribution';
|
|
41
41
|
import { breakpoint, debugBreakpointHint, debugStackframe, debugStackframeFocused } from '@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
42
|
-
import { DISASSEMBLY_VIEW_ID, State, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
43
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
42
|
+
import { DISASSEMBLY_VIEW_ID, State, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
43
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
44
44
|
import { InstructionBreakpoint } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
45
45
|
import { getUriFromSource } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugSource';
|
|
46
|
-
import { sourcesEqual, isUri } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
47
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
46
|
+
import { sourcesEqual, isUri } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
47
|
+
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
48
48
|
|
|
49
49
|
var DisassemblyView_1, BreakpointRenderer_1, InstructionRenderer_1;
|
|
50
50
|
const disassemblyNotAvailable = {
|