@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,21 +1,21 @@
|
|
|
1
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
2
|
-
import { Disposable, IDisposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
3
|
-
import { ILanguageService } from "vscode/vscode/vs/editor/common/languages/language";
|
|
4
|
-
import { ITextModel } from "vscode/vscode/vs/editor/common/model";
|
|
5
|
-
import { IMenuService } from "vscode/vscode/vs/platform/actions/common/actions.service";
|
|
6
|
-
import { ICommandService } from "vscode/vscode/vs/platform/commands/common/commands.service";
|
|
7
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
8
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
9
|
-
import { IDialogService } from "vscode/vscode/vs/platform/dialogs/common/dialogs.service";
|
|
10
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
11
|
-
import { IQuickInputService } from "vscode/vscode/vs/platform/quickinput/common/quickInput.service";
|
|
12
|
-
import { IWorkspaceFolder } from "vscode/vscode/vs/platform/workspace/common/workspace";
|
|
13
|
-
import { IAdapterDescriptor, IAdapterManager, IConfig, IConfigurationManager, IDebugAdapter, IDebugAdapterDescriptorFactory, IDebugAdapterFactory, IDebugSession, IGuessedDebugger } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
1
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
2
|
+
import { Disposable, IDisposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
3
|
+
import { ILanguageService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language";
|
|
4
|
+
import { ITextModel } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/model";
|
|
5
|
+
import { IMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service";
|
|
6
|
+
import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
|
|
7
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
8
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
9
|
+
import { IDialogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/dialogs/common/dialogs.service";
|
|
10
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
11
|
+
import { IQuickInputService } from "@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service";
|
|
12
|
+
import { IWorkspaceFolder } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace";
|
|
13
|
+
import { IAdapterDescriptor, IAdapterManager, IConfig, IConfigurationManager, IDebugAdapter, IDebugAdapterDescriptorFactory, IDebugAdapterFactory, IDebugSession, IGuessedDebugger } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
14
14
|
import { Debugger } from "../common/debugger.js";
|
|
15
|
-
import { ITaskService } from "vscode/vscode/vs/workbench/contrib/tasks/common/taskService.service";
|
|
16
|
-
import { IEditorService } from "vscode/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
17
|
-
import { IExtensionService } from "vscode/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
18
|
-
import { ILifecycleService } from "vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle.service";
|
|
15
|
+
import { ITaskService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskService.service";
|
|
16
|
+
import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
|
|
17
|
+
import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
18
|
+
import { ILifecycleService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle.service";
|
|
19
19
|
export interface IAdapterManagerDelegate {
|
|
20
20
|
onDidNewSession: Event<IDebugSession>;
|
|
21
21
|
configurationManager(): IConfigurationManager;
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
4
|
-
import { Emitter, Event } from 'vscode/vscode/vs/base/common/event';
|
|
5
|
-
import { Disposable } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
6
|
-
import Severity from 'vscode/vscode/vs/base/common/severity';
|
|
7
|
-
import { equalsIgnoreCase } from 'vscode/vscode/vs/base/common/strings';
|
|
8
|
-
import { isCodeEditor } from 'vscode/vscode/vs/editor/browser/editorBrowser';
|
|
9
|
-
import { ILanguageService } from 'vscode/vscode/vs/editor/common/languages/language';
|
|
10
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
11
|
-
import { MenuId, MenuItemAction } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
12
|
-
import { IMenuService } from 'vscode/vscode/vs/platform/actions/common/actions.service';
|
|
13
|
-
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
14
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
15
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
16
|
-
import { IDialogService } from 'vscode/vscode/vs/platform/dialogs/common/dialogs.service';
|
|
17
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
18
|
-
import { Extensions } from 'vscode/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
19
|
-
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
20
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { RunOnceScheduler } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
4
|
+
import { Emitter, Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
5
|
+
import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
6
|
+
import Severity from '@codingame/monaco-vscode-api/vscode/vs/base/common/severity';
|
|
7
|
+
import { equalsIgnoreCase } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings';
|
|
8
|
+
import { isCodeEditor } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser';
|
|
9
|
+
import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/languages/language';
|
|
10
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
11
|
+
import { MenuId, MenuItemAction } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
12
|
+
import { IMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service';
|
|
13
|
+
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
14
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
15
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
16
|
+
import { IDialogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/dialogs/common/dialogs.service';
|
|
17
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
18
|
+
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
19
|
+
import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
20
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
21
21
|
import { Breakpoints } from '../common/breakpoints.js';
|
|
22
|
-
import { CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DEBUG_EXTENSION_AVAILABLE, INTERNAL_CONSOLE_OPTIONS_SCHEMA } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
22
|
+
import { CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DEBUG_EXTENSION_AVAILABLE, INTERNAL_CONSOLE_OPTIONS_SCHEMA } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
23
23
|
import { Debugger } from '../common/debugger.js';
|
|
24
24
|
import { debuggersExtPoint, breakpointsExtPoint, launchSchema, presentationSchema } from '../common/debugSchemas.js';
|
|
25
|
-
import { TaskDefinitionRegistry } from 'vscode/vscode/vs/workbench/contrib/tasks/common/taskDefinitionRegistry';
|
|
26
|
-
import { ITaskService } from 'vscode/vscode/vs/workbench/contrib/tasks/common/taskService.service';
|
|
25
|
+
import { TaskDefinitionRegistry } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskDefinitionRegistry';
|
|
26
|
+
import { ITaskService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/tasks/common/taskService.service';
|
|
27
27
|
import { launchSchemaId } from '@codingame/monaco-vscode-37e80bf5-92f5-5e4c-8b6d-98e0bb89dbef-common/vscode/vs/workbench/services/configuration/common/configuration';
|
|
28
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
29
|
-
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
30
|
-
import { LifecyclePhase } from 'vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
31
|
-
import { ILifecycleService } from 'vscode/vscode/vs/workbench/services/lifecycle/common/lifecycle.service';
|
|
28
|
+
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
29
|
+
import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
30
|
+
import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
|
|
31
|
+
import { ILifecycleService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle.service';
|
|
32
32
|
|
|
33
33
|
const jsonRegistry = ( Registry.as(Extensions.JSONContribution));
|
|
34
34
|
let AdapterManager = class AdapterManager extends Disposable {
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { CancellationToken } from "vscode/vscode/vs/base/common/cancellation";
|
|
2
|
-
import { Event } from "vscode/vscode/vs/base/common/event";
|
|
3
|
-
import { IDisposable } from "vscode/vscode/vs/base/common/lifecycle";
|
|
4
|
-
import { URI as uri } from "vscode/vscode/vs/base/common/uri";
|
|
5
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
6
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
7
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
8
|
-
import { ILogService } from "vscode/vscode/vs/platform/log/common/log.service";
|
|
9
|
-
import { IQuickInputService } from "vscode/vscode/vs/platform/quickinput/common/quickInput.service";
|
|
10
|
-
import { IStorageService } from "vscode/vscode/vs/platform/storage/common/storage.service";
|
|
11
|
-
import { IUriIdentityService } from "vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
12
|
-
import { IWorkspaceContextService } from "vscode/vscode/vs/platform/workspace/common/workspace.service";
|
|
13
|
-
import { DebugConfigurationProviderTriggerKind, IAdapterManager, IConfig, IConfigPresentation, IConfigurationManager, IDebugConfigurationProvider, ILaunch } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
14
|
-
import { IExtensionService } from "vscode/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
15
|
-
import { IHistoryService } from "vscode/vscode/vs/workbench/services/history/common/history.service";
|
|
1
|
+
import { CancellationToken } from "@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation";
|
|
2
|
+
import { Event } from "@codingame/monaco-vscode-api/vscode/vs/base/common/event";
|
|
3
|
+
import { IDisposable } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
4
|
+
import { URI as uri } from "@codingame/monaco-vscode-api/vscode/vs/base/common/uri";
|
|
5
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
6
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
7
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
8
|
+
import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service";
|
|
9
|
+
import { IQuickInputService } from "@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service";
|
|
10
|
+
import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
|
|
11
|
+
import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
12
|
+
import { IWorkspaceContextService } from "@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service";
|
|
13
|
+
import { DebugConfigurationProviderTriggerKind, IAdapterManager, IConfig, IConfigPresentation, IConfigurationManager, IDebugConfigurationProvider, ILaunch } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
14
|
+
import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
|
|
15
|
+
import { IHistoryService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/history/common/history.service";
|
|
16
16
|
interface IDynamicPickItem {
|
|
17
17
|
label: string;
|
|
18
18
|
launch: ILaunch;
|
|
@@ -1,41 +1,41 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { distinct } from 'vscode/vscode/vs/base/common/arrays';
|
|
4
|
-
import { sequence } from 'vscode/vscode/vs/base/common/async';
|
|
5
|
-
import { CancellationTokenSource, CancellationToken } from 'vscode/vscode/vs/base/common/cancellation';
|
|
6
|
-
import { Emitter, Event } from 'vscode/vscode/vs/base/common/event';
|
|
7
|
-
import { parse } from 'vscode/vscode/vs/base/common/json';
|
|
8
|
-
import { DisposableStore, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
9
|
-
import { deepClone } from 'vscode/vscode/vs/base/common/objects';
|
|
10
|
-
import { joinPath } from 'vscode/vscode/vs/base/common/resources';
|
|
11
|
-
import { ThemeIcon } from 'vscode/vscode/vs/base/common/themables';
|
|
12
|
-
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
13
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
14
|
-
import { ConfigurationTarget } from 'vscode/vscode/vs/platform/configuration/common/configuration';
|
|
15
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
16
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
17
|
-
import { IFileService } from 'vscode/vscode/vs/platform/files/common/files.service';
|
|
18
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
19
|
-
import { Extensions } from 'vscode/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
20
|
-
import { ILogService } from 'vscode/vscode/vs/platform/log/common/log.service';
|
|
21
|
-
import { IQuickInputService } from 'vscode/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
22
|
-
import { Registry } from 'vscode/vscode/vs/platform/registry/common/platform';
|
|
23
|
-
import { StorageScope, StorageTarget } from 'vscode/vscode/vs/platform/storage/common/storage';
|
|
24
|
-
import { IStorageService } from 'vscode/vscode/vs/platform/storage/common/storage.service';
|
|
25
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
26
|
-
import { WorkbenchState } from 'vscode/vscode/vs/platform/workspace/common/workspace';
|
|
27
|
-
import { IWorkspaceContextService } from 'vscode/vscode/vs/platform/workspace/common/workspace.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { distinct } from '@codingame/monaco-vscode-api/vscode/vs/base/common/arrays';
|
|
4
|
+
import { sequence } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
5
|
+
import { CancellationTokenSource, CancellationToken } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation';
|
|
6
|
+
import { Emitter, Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
7
|
+
import { parse } from '@codingame/monaco-vscode-api/vscode/vs/base/common/json';
|
|
8
|
+
import { DisposableStore, dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
9
|
+
import { deepClone } from '@codingame/monaco-vscode-api/vscode/vs/base/common/objects';
|
|
10
|
+
import { joinPath } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
11
|
+
import { ThemeIcon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/themables';
|
|
12
|
+
import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
|
|
13
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
14
|
+
import { ConfigurationTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration';
|
|
15
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
16
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
17
|
+
import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service';
|
|
18
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
19
|
+
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
20
|
+
import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
|
|
21
|
+
import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
|
|
22
|
+
import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
|
|
23
|
+
import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
|
|
24
|
+
import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
|
|
25
|
+
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
26
|
+
import { WorkbenchState } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace';
|
|
27
|
+
import { IWorkspaceContextService } from '@codingame/monaco-vscode-api/vscode/vs/platform/workspace/common/workspace.service';
|
|
28
28
|
import { debugConfigure } from '@codingame/monaco-vscode-fc42f049-7883-579d-bb0b-2aa1010a19a8-common/vscode/vs/workbench/contrib/debug/browser/debugIcons';
|
|
29
|
-
import { CONTEXT_DEBUG_CONFIGURATION_TYPE, DebugConfigurationProviderTriggerKind } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
29
|
+
import { CONTEXT_DEBUG_CONFIGURATION_TYPE, DebugConfigurationProviderTriggerKind } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
30
30
|
import { launchSchema } from '../common/debugSchemas.js';
|
|
31
|
-
import { getVisibleAndSorted } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
31
|
+
import { getVisibleAndSorted } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
32
32
|
import { launchSchemaId } from '@codingame/monaco-vscode-37e80bf5-92f5-5e4c-8b6d-98e0bb89dbef-common/vscode/vs/workbench/services/configuration/common/configuration';
|
|
33
|
-
import { ACTIVE_GROUP } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
|
|
34
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
35
|
-
import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
36
|
-
import { IHistoryService } from 'vscode/vscode/vs/workbench/services/history/common/history.service';
|
|
37
|
-
import { IPreferencesService } from 'vscode/vscode/vs/workbench/services/preferences/common/preferences.service';
|
|
38
|
-
import { ITextFileService } from 'vscode/vscode/vs/workbench/services/textfile/common/textfiles.service';
|
|
33
|
+
import { ACTIVE_GROUP } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService';
|
|
34
|
+
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
35
|
+
import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
|
|
36
|
+
import { IHistoryService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/history/common/history.service';
|
|
37
|
+
import { IPreferencesService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/preferences/common/preferences.service';
|
|
38
|
+
import { ITextFileService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles.service';
|
|
39
39
|
|
|
40
40
|
const jsonRegistry = ( Registry.as(Extensions.JSONContribution));
|
|
41
41
|
jsonRegistry.registerSchema(launchSchemaId, launchSchema);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { CancellationToken } from "vscode/vscode/vs/base/common/cancellation";
|
|
2
|
-
import { DisposableStore } from "vscode/vscode/vs/base/common/lifecycle";
|
|
3
|
-
import { ICommandService } from "vscode/vscode/vs/platform/commands/common/commands.service";
|
|
1
|
+
import { CancellationToken } from "@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation";
|
|
2
|
+
import { DisposableStore } from "@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle";
|
|
3
|
+
import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
|
|
4
4
|
import { FastAndSlowPicks, IPickerQuickAccessItem, PickerQuickAccessProvider, Picks } from "@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess";
|
|
5
|
-
import { IViewsService } from "vscode/vscode/vs/workbench/services/views/common/viewsService.service";
|
|
6
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
5
|
+
import { IViewsService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service";
|
|
6
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
7
7
|
export declare class DebugConsoleQuickAccess extends PickerQuickAccessProvider<IPickerQuickAccessItem> {
|
|
8
8
|
private readonly _debugService;
|
|
9
9
|
private readonly _viewsService;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { matchesFuzzy } from 'vscode/vscode/vs/base/common/filters';
|
|
4
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
5
|
-
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { matchesFuzzy } from '@codingame/monaco-vscode-api/vscode/vs/base/common/filters';
|
|
4
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
5
|
+
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
6
6
|
import { PickerQuickAccessProvider } from '@codingame/monaco-vscode-219d9a5f-b446-507b-a188-1178a0867c75-common/vscode/vs/platform/quickinput/browser/pickerQuickAccess';
|
|
7
|
-
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
7
|
+
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
8
8
|
import { DEBUG_CONSOLE_QUICK_ACCESS_PREFIX, SELECT_AND_START_ID } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugCommands';
|
|
9
|
-
import { REPL_VIEW_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
10
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
9
|
+
import { REPL_VIEW_ID } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
10
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
11
11
|
|
|
12
12
|
let DebugConsoleQuickAccess = class DebugConsoleQuickAccess extends PickerQuickAccessProvider {
|
|
13
13
|
constructor(_debugService, _viewsService, _commandService) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ICodeEditor } from "vscode/vscode/vs/editor/browser/editorBrowser";
|
|
2
|
-
import { EditorAction } from "vscode/vscode/vs/editor/browser/editorExtensions";
|
|
3
|
-
import { ILocalizedString } from "vscode/vscode/vs/platform/action/common/action";
|
|
4
|
-
import { ServicesAccessor } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
1
|
+
import { ICodeEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
|
|
2
|
+
import { EditorAction } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorExtensions";
|
|
3
|
+
import { ILocalizedString } from "@codingame/monaco-vscode-api/vscode/vs/platform/action/common/action";
|
|
4
|
+
import { ServicesAccessor } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
5
5
|
export declare class RunToCursorAction extends EditorAction {
|
|
6
6
|
static readonly ID = "editor.debug.action.runToCursor";
|
|
7
7
|
static readonly LABEL: ILocalizedString;
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
|
|
2
|
-
import { getDomNodePagePosition } from 'vscode/vscode/vs/base/browser/dom';
|
|
3
|
-
import { Action } from 'vscode/vscode/vs/base/common/actions';
|
|
4
|
-
import { KeyCode, KeyChord, KeyMod } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
5
|
-
import { EditorAction, registerEditorAction } from 'vscode/vscode/vs/editor/browser/editorExtensions';
|
|
6
|
-
import { ICodeEditorService } from 'vscode/vscode/vs/editor/browser/services/codeEditorService';
|
|
7
|
-
import { Position } from 'vscode/vscode/vs/editor/common/core/position';
|
|
8
|
-
import { EditorContextKeys } from 'vscode/vscode/vs/editor/common/editorContextKeys';
|
|
9
|
-
import { ILanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeatures';
|
|
10
|
-
import { MessageController } from 'vscode/vscode/vs/editor/contrib/message/browser/messageController';
|
|
11
|
-
import { localize2, localize } from 'vscode/vscode/vs/nls';
|
|
12
|
-
import { Action2, MenuId, registerAction2 } from 'vscode/vscode/vs/platform/actions/common/actions';
|
|
13
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
14
|
-
import { ContextKeyExpr } from 'vscode/vscode/vs/platform/contextkey/common/contextkey';
|
|
15
|
-
import { IContextMenuService } from 'vscode/vscode/vs/platform/contextview/browser/contextView.service';
|
|
16
|
-
import { KeybindingWeight } from 'vscode/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
17
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
18
|
-
import { PanelFocusContext } from 'vscode/vscode/vs/workbench/common/contextkeys';
|
|
19
|
-
import { ChatContextKeys } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatContextKeys';
|
|
2
|
+
import { getDomNodePagePosition } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
3
|
+
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
4
|
+
import { KeyCode, KeyChord, KeyMod } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
5
|
+
import { EditorAction, registerEditorAction } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorExtensions';
|
|
6
|
+
import { ICodeEditorService } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/services/codeEditorService';
|
|
7
|
+
import { Position } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position';
|
|
8
|
+
import { EditorContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/editorContextKeys';
|
|
9
|
+
import { ILanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures';
|
|
10
|
+
import { MessageController } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/message/browser/messageController';
|
|
11
|
+
import { localize2, localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
12
|
+
import { Action2, MenuId, registerAction2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
|
|
13
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
14
|
+
import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
|
|
15
|
+
import { IContextMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service';
|
|
16
|
+
import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
|
|
17
|
+
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
18
|
+
import { PanelFocusContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
|
|
19
|
+
import { ChatContextKeys } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/chatContextKeys';
|
|
20
20
|
import { openBreakpointSource } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/breakpointsView';
|
|
21
21
|
import { DisassemblyView } from './disassemblyView.js';
|
|
22
|
-
import { CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DISASSEMBLY_VIEW_FOCUS, BREAKPOINT_EDITOR_CONTRIBUTION_ID, BreakpointWidgetContext, CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE, CONTEXT_IN_DEBUG_MODE, CONTEXT_DEBUG_STATE, CONTEXT_DISASSEMBLE_REQUEST_SUPPORTED, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST, CONTEXT_CALLSTACK_ITEM_TYPE, REPL_VIEW_ID, WATCH_VIEW_ID, EDITOR_CONTRIBUTION_ID, CONTEXT_STEP_INTO_TARGETS_SUPPORTED, CONTEXT_EXCEPTION_WIDGET_VISIBLE } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
23
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
24
|
-
import { getEvaluatableExpressionAtPosition } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
22
|
+
import { CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DISASSEMBLY_VIEW_FOCUS, BREAKPOINT_EDITOR_CONTRIBUTION_ID, BreakpointWidgetContext, CONTEXT_FOCUSED_STACK_FRAME_HAS_INSTRUCTION_POINTER_REFERENCE, CONTEXT_IN_DEBUG_MODE, CONTEXT_DEBUG_STATE, CONTEXT_DISASSEMBLE_REQUEST_SUPPORTED, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST, CONTEXT_CALLSTACK_ITEM_TYPE, REPL_VIEW_ID, WATCH_VIEW_ID, EDITOR_CONTRIBUTION_ID, CONTEXT_STEP_INTO_TARGETS_SUPPORTED, CONTEXT_EXCEPTION_WIDGET_VISIBLE } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
23
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
24
|
+
import { getEvaluatableExpressionAtPosition } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugUtils';
|
|
25
25
|
import { DisassemblyViewInput } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/disassemblyViewInput';
|
|
26
|
-
import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
27
|
-
import { IViewsService } from 'vscode/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
26
|
+
import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
|
|
27
|
+
import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
|
|
28
28
|
|
|
29
29
|
class ToggleBreakpointAction extends Action2 {
|
|
30
30
|
constructor() {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { IMouseEvent } from "vscode/vscode/vs/base/browser/mouseEvent";
|
|
2
|
-
import { ICodeEditor } from "vscode/vscode/vs/editor/browser/editorBrowser";
|
|
3
|
-
import { Position } from "vscode/vscode/vs/editor/common/core/position";
|
|
4
|
-
import { ILanguageFeatureDebounceService } from "vscode/vscode/vs/editor/common/services/languageFeatureDebounce";
|
|
5
|
-
import { ILanguageFeaturesService } from "vscode/vscode/vs/editor/common/services/languageFeatures";
|
|
6
|
-
import { ICommandService } from "vscode/vscode/vs/platform/commands/common/commands.service";
|
|
7
|
-
import { IConfigurationService } from "vscode/vscode/vs/platform/configuration/common/configuration.service";
|
|
8
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
9
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
10
|
-
import { IUriIdentityService } from "vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
11
|
-
import { IDebugEditorContribution } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
12
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
13
|
-
import { IHostService } from "vscode/vscode/vs/workbench/services/host/browser/host.service";
|
|
1
|
+
import { IMouseEvent } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/mouseEvent";
|
|
2
|
+
import { ICodeEditor } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
|
|
3
|
+
import { Position } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position";
|
|
4
|
+
import { ILanguageFeatureDebounceService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatureDebounce";
|
|
5
|
+
import { ILanguageFeaturesService } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures";
|
|
6
|
+
import { ICommandService } from "@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service";
|
|
7
|
+
import { IConfigurationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service";
|
|
8
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
9
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
10
|
+
import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
|
|
11
|
+
import { IDebugEditorContribution } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
12
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
13
|
+
import { IHostService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service";
|
|
14
14
|
export declare const debugInlineForeground: string;
|
|
15
15
|
export declare const debugInlineBackground: string;
|
|
16
16
|
export declare class DebugEditorContribution implements IDebugEditorContribution {
|
|
@@ -1,63 +1,63 @@
|
|
|
1
1
|
|
|
2
|
-
import { __decorate, __param } from 'vscode/external/tslib/tslib.es6';
|
|
3
|
-
import { addDisposableListener, isKeyboardEvent } from 'vscode/vscode/vs/base/browser/dom';
|
|
4
|
-
import { DomEmitter } from 'vscode/vscode/vs/base/browser/event';
|
|
5
|
-
import { StandardKeyboardEvent } from 'vscode/vscode/vs/base/browser/keyboardEvent';
|
|
6
|
-
import { RunOnceScheduler } from 'vscode/vscode/vs/base/common/async';
|
|
7
|
-
import { CancellationTokenSource, CancellationToken } from 'vscode/vscode/vs/base/common/cancellation';
|
|
8
|
-
import { memoize } from 'vscode/vscode/vs/base/common/decorators';
|
|
9
|
-
import { onUnexpectedExternalError, illegalArgument } from 'vscode/vscode/vs/base/common/errors';
|
|
10
|
-
import { Event } from 'vscode/vscode/vs/base/common/event';
|
|
11
|
-
import { visit } from 'vscode/vscode/vs/base/common/json';
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { addDisposableListener, isKeyboardEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { DomEmitter } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/event';
|
|
5
|
+
import { StandardKeyboardEvent } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/keyboardEvent';
|
|
6
|
+
import { RunOnceScheduler } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
7
|
+
import { CancellationTokenSource, CancellationToken } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation';
|
|
8
|
+
import { memoize } from '@codingame/monaco-vscode-api/vscode/vs/base/common/decorators';
|
|
9
|
+
import { onUnexpectedExternalError, illegalArgument } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
|
|
10
|
+
import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
11
|
+
import { visit } from '@codingame/monaco-vscode-api/vscode/vs/base/common/json';
|
|
12
12
|
import { setProperty } from '@codingame/monaco-vscode-56402b83-4a60-5b15-86f9-71fe99c32744-common/vscode/vs/base/common/jsonEdit';
|
|
13
|
-
import { KeyCode } from 'vscode/vscode/vs/base/common/keyCodes';
|
|
14
|
-
import { MutableDisposable, DisposableStore, toDisposable, dispose } from 'vscode/vscode/vs/base/common/lifecycle';
|
|
15
|
-
import { clamp } from 'vscode/vscode/vs/base/common/numbers';
|
|
16
|
-
import { basename } from 'vscode/vscode/vs/base/common/path';
|
|
17
|
-
import { isMacintosh } from 'vscode/vscode/vs/base/common/platform';
|
|
18
|
-
import { noBreakWhitespace, format } from 'vscode/vscode/vs/base/common/strings';
|
|
19
|
-
import { isDefined, assertType } from 'vscode/vscode/vs/base/common/types';
|
|
20
|
-
import { Constants } from 'vscode/vscode/vs/base/common/uint';
|
|
21
|
-
import { URI } from 'vscode/vscode/vs/base/common/uri';
|
|
22
|
-
import { CoreEditingCommands } from 'vscode/vscode/vs/editor/browser/coreCommands';
|
|
23
|
-
import { MouseTargetType } from 'vscode/vscode/vs/editor/browser/editorBrowser';
|
|
24
|
-
import { EditorOption } from 'vscode/vscode/vs/editor/common/config/editorOptions';
|
|
25
|
-
import { EditOperation } from 'vscode/vscode/vs/editor/common/core/editOperation';
|
|
26
|
-
import { Position } from 'vscode/vscode/vs/editor/common/core/position';
|
|
27
|
-
import { Range } from 'vscode/vscode/vs/editor/common/core/range';
|
|
28
|
-
import { DEFAULT_WORD_REGEXP } from 'vscode/vscode/vs/editor/common/core/wordHelper';
|
|
29
|
-
import { ScrollType } from 'vscode/vscode/vs/editor/common/editorCommon';
|
|
30
|
-
import { StandardTokenType } from 'vscode/vscode/vs/editor/common/encodedTokenAttributes';
|
|
31
|
-
import { InjectedTextCursorStops } from 'vscode/vscode/vs/editor/common/model';
|
|
32
|
-
import { ILanguageFeatureDebounceService } from 'vscode/vscode/vs/editor/common/services/languageFeatureDebounce';
|
|
33
|
-
import { ILanguageFeaturesService } from 'vscode/vscode/vs/editor/common/services/languageFeatures';
|
|
34
|
-
import { IModelService } from 'vscode/vscode/vs/editor/common/services/model';
|
|
35
|
-
import { ContentHoverController } from 'vscode/vscode/vs/editor/contrib/hover/browser/contentHoverController';
|
|
36
|
-
import { HoverStartMode, HoverStartSource } from 'vscode/vscode/vs/editor/contrib/hover/browser/hoverOperation';
|
|
37
|
-
import { localize } from 'vscode/vscode/vs/nls';
|
|
38
|
-
import { CommandsRegistry } from 'vscode/vscode/vs/platform/commands/common/commands';
|
|
39
|
-
import { ICommandService } from 'vscode/vscode/vs/platform/commands/common/commands.service';
|
|
40
|
-
import { IConfigurationService } from 'vscode/vscode/vs/platform/configuration/common/configuration.service';
|
|
41
|
-
import { IContextKeyService } from 'vscode/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
42
|
-
import { IInstantiationService } from 'vscode/vscode/vs/platform/instantiation/common/instantiation';
|
|
43
|
-
import { registerColor } from 'vscode/vscode/vs/platform/theme/common/colorUtils';
|
|
44
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/baseColors';
|
|
45
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
46
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/editorColors';
|
|
47
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/inputColors';
|
|
48
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/listColors';
|
|
49
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/menuColors';
|
|
50
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
51
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/miscColors';
|
|
52
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
53
|
-
import 'vscode/vscode/vs/platform/theme/common/colors/searchColors';
|
|
54
|
-
import { IUriIdentityService } from 'vscode/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
13
|
+
import { KeyCode } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
|
|
14
|
+
import { MutableDisposable, DisposableStore, toDisposable, dispose } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
15
|
+
import { clamp } from '@codingame/monaco-vscode-api/vscode/vs/base/common/numbers';
|
|
16
|
+
import { basename } from '@codingame/monaco-vscode-api/vscode/vs/base/common/path';
|
|
17
|
+
import { isMacintosh } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
|
|
18
|
+
import { noBreakWhitespace, format } from '@codingame/monaco-vscode-api/vscode/vs/base/common/strings';
|
|
19
|
+
import { isDefined, assertType } from '@codingame/monaco-vscode-api/vscode/vs/base/common/types';
|
|
20
|
+
import { Constants } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uint';
|
|
21
|
+
import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
|
|
22
|
+
import { CoreEditingCommands } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/coreCommands';
|
|
23
|
+
import { MouseTargetType } from '@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser';
|
|
24
|
+
import { EditorOption } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/config/editorOptions';
|
|
25
|
+
import { EditOperation } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/editOperation';
|
|
26
|
+
import { Position } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position';
|
|
27
|
+
import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
|
|
28
|
+
import { DEFAULT_WORD_REGEXP } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/wordHelper';
|
|
29
|
+
import { ScrollType } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/editorCommon';
|
|
30
|
+
import { StandardTokenType } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/encodedTokenAttributes';
|
|
31
|
+
import { InjectedTextCursorStops } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/model';
|
|
32
|
+
import { ILanguageFeatureDebounceService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatureDebounce';
|
|
33
|
+
import { ILanguageFeaturesService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/languageFeatures';
|
|
34
|
+
import { IModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/model';
|
|
35
|
+
import { ContentHoverController } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/hover/browser/contentHoverController';
|
|
36
|
+
import { HoverStartMode, HoverStartSource } from '@codingame/monaco-vscode-api/vscode/vs/editor/contrib/hover/browser/hoverOperation';
|
|
37
|
+
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
38
|
+
import { CommandsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands';
|
|
39
|
+
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
40
|
+
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
41
|
+
import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service';
|
|
42
|
+
import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
|
|
43
|
+
import { registerColor } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colorUtils';
|
|
44
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/baseColors';
|
|
45
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/chartsColors';
|
|
46
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/editorColors';
|
|
47
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/inputColors';
|
|
48
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/listColors';
|
|
49
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/menuColors';
|
|
50
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/minimapColors';
|
|
51
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/miscColors';
|
|
52
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/quickpickColors';
|
|
53
|
+
import '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/colors/searchColors';
|
|
54
|
+
import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
|
|
55
55
|
import { DebugHoverWidget, ShowDebugHoverResult } from './debugHover.js';
|
|
56
56
|
import { ExceptionWidget } from './exceptionWidget.js';
|
|
57
|
-
import { CONTEXT_EXCEPTION_WIDGET_VISIBLE, State } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
|
|
58
|
-
import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
57
|
+
import { CONTEXT_EXCEPTION_WIDGET_VISIBLE, State } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
|
|
58
|
+
import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
|
|
59
59
|
import { Expression } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
|
|
60
|
-
import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host.service';
|
|
60
|
+
import { IHostService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/host/browser/host.service';
|
|
61
61
|
|
|
62
62
|
const MAX_NUM_INLINE_VALUES = 100;
|
|
63
63
|
const MAX_INLINE_DECORATOR_LENGTH = 150;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { IMouseEvent } from "vscode/vscode/vs/base/browser/mouseEvent";
|
|
2
|
-
import { ContentWidgetPositionPreference, ICodeEditor, IContentWidget, IContentWidgetPosition } from "vscode/vscode/vs/editor/browser/editorBrowser";
|
|
3
|
-
import { IDimension } from "vscode/vscode/vs/editor/common/core/dimension";
|
|
4
|
-
import { Position } from "vscode/vscode/vs/editor/common/core/position";
|
|
5
|
-
import { IMenuService } from "vscode/vscode/vs/platform/actions/common/actions.service";
|
|
6
|
-
import { IContextKeyService } from "vscode/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
7
|
-
import { IContextMenuService } from "vscode/vscode/vs/platform/contextview/browser/contextView.service";
|
|
8
|
-
import { IInstantiationService } from "vscode/vscode/vs/platform/instantiation/common/instantiation";
|
|
9
|
-
import { IExpression, IStackFrame } from "vscode/vscode/vs/workbench/contrib/debug/common/debug";
|
|
10
|
-
import { IDebugService } from "vscode/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
1
|
+
import { IMouseEvent } from "@codingame/monaco-vscode-api/vscode/vs/base/browser/mouseEvent";
|
|
2
|
+
import { ContentWidgetPositionPreference, ICodeEditor, IContentWidget, IContentWidgetPosition } from "@codingame/monaco-vscode-api/vscode/vs/editor/browser/editorBrowser";
|
|
3
|
+
import { IDimension } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/dimension";
|
|
4
|
+
import { Position } from "@codingame/monaco-vscode-api/vscode/vs/editor/common/core/position";
|
|
5
|
+
import { IMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions.service";
|
|
6
|
+
import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey.service";
|
|
7
|
+
import { IContextMenuService } from "@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service";
|
|
8
|
+
import { IInstantiationService } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
|
|
9
|
+
import { IExpression, IStackFrame } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
|
|
10
|
+
import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
|
|
11
11
|
export declare enum ShowDebugHoverResult {
|
|
12
12
|
NOT_CHANGED = 0,
|
|
13
13
|
NOT_AVAILABLE = 1,
|