@codingame/monaco-vscode-debug-service-override 1.85.0-next.2 → 1.85.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/package.json +3 -3
  2. package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
  3. package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +1 -1
  4. package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +4 -4
  5. package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +2 -2
  6. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +2 -2
  7. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +1 -1
  8. package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +1 -1
  9. package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +2 -2
  10. package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +2 -2
  11. package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +3 -3
  12. package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +1 -1
  13. package/vscode/src/vs/workbench/contrib/debug/browser/replFilter.js +1 -1
  14. package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +1 -1
  15. package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +1 -1
  16. package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +1 -1
  17. package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +1 -1
  18. package/vscode/src/vs/workbench/contrib/debug/common/debugStorage.js +1 -1
  19. package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
  20. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +0 -857
  21. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +0 -412
  22. package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +0 -1593
  23. package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +0 -180
  24. package/vscode/src/vs/workbench/contrib/debug/browser/media/breakpointWidget.css.js +0 -6
  25. package/vscode/src/vs/workbench/contrib/debug/browser/media/callStackEditorContribution.css.js +0 -6
  26. package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +0 -1487
  27. package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +0 -127
  28. package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +0 -31
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-debug-service-override",
3
- "version": "1.85.0-next.2",
3
+ "version": "1.85.1",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,8 +18,8 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@1.85.0-next.2",
21
+ "vscode": "npm:@codingame/monaco-vscode-api@1.85.1",
22
22
  "monaco-editor": "0.45.0",
23
- "@codingame/monaco-vscode-layout-service-override": "1.85.0-next.2"
23
+ "@codingame/monaco-vscode-layout-service-override": "1.85.1"
24
24
  }
25
25
  }
@@ -12,7 +12,7 @@ import { localizeWithPath } from 'monaco-editor/esm/vs/nls.js';
12
12
  import { IContextViewService } from 'monaco-editor/esm/vs/platform/contextview/browser/contextView.js';
13
13
  import { defaultInputBoxStyles } from 'monaco-editor/esm/vs/platform/theme/browser/defaultStyles.js';
14
14
  import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
15
- import { Expression, Variable, ExpressionContainer } from '../common/debugModel.js';
15
+ import { Expression, Variable, ExpressionContainer } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
16
16
  import { ReplEvaluationResult } from '../common/replModel.js';
17
17
 
18
18
  const MAX_VALUE_RENDER_LENGTH_IN_VIEWLET = 1024;
@@ -33,7 +33,7 @@ import { STOP_ID, DISCONNECT_ID, PAUSE_LABEL, PAUSE_ID, CONTINUE_LABEL, CONTINUE
33
33
  import { callstackViewSession, debugRestartFrame, debugPause, debugContinue, debugRestart, debugStop, debugDisconnect, debugStepOver, debugStepInto, debugStepOut } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugIcons';
34
34
  import { createDisconnectMenuItemAction } from './debugToolBar.js';
35
35
  import { CALLSTACK_VIEW_ID, CONTEXT_DEBUG_STATE, getStateLabel, CONTEXT_CALLSTACK_ITEM_TYPE, CONTEXT_CALLSTACK_SESSION_HAS_ONE_THREAD, CONTEXT_CALLSTACK_ITEM_STOPPED, CONTEXT_CALLSTACK_SESSION_IS_ATTACH, CONTEXT_STACK_FRAME_SUPPORTS_RESTART, IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
36
- import { Thread, StackFrame, ThreadAndSessionIds } from '../common/debugModel.js';
36
+ import { Thread, StackFrame, ThreadAndSessionIds } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
37
37
  import { isSessionAttach } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
38
38
 
39
39
  var SessionsRenderer_1, ThreadsRenderer_1, StackFramesRenderer_1;
@@ -14,9 +14,9 @@ import { ViewPaneContainer } from 'vscode/vscode/vs/workbench/browser/parts/view
14
14
  import { Extensions } from 'vscode/vscode/vs/workbench/common/contributions';
15
15
  import { EditorExtensions } from 'vscode/vscode/vs/workbench/common/editor';
16
16
  import { Extensions as Extensions$2 } from 'vscode/vscode/vs/workbench/common/views';
17
- import { BreakpointEditorContribution } from './breakpointEditorContribution.js';
18
- import { BreakpointsView } from './breakpointsView.js';
19
- import { CallStackEditorContribution } from './callStackEditorContribution.js';
17
+ import { BreakpointEditorContribution } from 'vscode/vscode/vs/workbench/contrib/debug/browser/breakpointEditorContribution';
18
+ import { BreakpointsView } from 'vscode/vscode/vs/workbench/contrib/debug/browser/breakpointsView';
19
+ import { CallStackEditorContribution } from 'vscode/vscode/vs/workbench/contrib/debug/browser/callStackEditorContribution';
20
20
  import { CallStackView } from './callStackView.js';
21
21
  import { registerColors } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugColors';
22
22
  import { DEBUG_QUICK_ACCESS_PREFIX, SELECT_AND_START_ID, DEBUG_CONSOLE_QUICK_ACCESS_PREFIX, SELECT_DEBUG_CONSOLE_ID, TERMINATE_THREAD_ID, STEP_OVER_LABEL, STEP_OVER_ID, STEP_INTO_LABEL, STEP_INTO_ID, STEP_INTO_TARGET_LABEL, STEP_INTO_TARGET_ID, STEP_OUT_LABEL, STEP_OUT_ID, PAUSE_LABEL, PAUSE_ID, STOP_LABEL, STOP_ID, CONTINUE_LABEL, CONTINUE_ID, FOCUS_REPL_ID, JUMP_TO_CURSOR_ID, TOGGLE_INLINE_BREAKPOINT_ID, SELECT_AND_START_LABEL, CALLSTACK_TOP_LABEL, CALLSTACK_TOP_ID, CALLSTACK_BOTTOM_LABEL, CALLSTACK_BOTTOM_ID, CALLSTACK_UP_LABEL, CALLSTACK_UP_ID, CALLSTACK_DOWN_LABEL, CALLSTACK_DOWN_ID, RESTART_LABEL, RESTART_SESSION_ID, DISCONNECT_LABEL, DISCONNECT_ID, DISCONNECT_AND_SUSPEND_LABEL, DISCONNECT_AND_SUSPEND_ID, RESTART_FRAME_ID, COPY_STACK_TRACE_ID, EDIT_EXPRESSION_COMMAND_ID, SET_EXPRESSION_COMMAND_ID, REMOVE_EXPRESSION_COMMAND_ID, DEBUG_COMMAND_CATEGORY, NEXT_DEBUG_CONSOLE_LABEL, NEXT_DEBUG_CONSOLE_ID, PREV_DEBUG_CONSOLE_LABEL, PREV_DEBUG_CONSOLE_ID, OPEN_LOADED_SCRIPTS_LABEL, SHOW_LOADED_SCRIPTS_ID, SELECT_DEBUG_CONSOLE_LABEL, SELECT_DEBUG_SESSION_LABEL, SELECT_DEBUG_SESSION_ID } from './debugCommands.js';
@@ -40,7 +40,7 @@ import { WelcomeView } from './welcomeView.js';
40
40
  import { BREAKPOINT_EDITOR_CONTRIBUTION_ID, EDITOR_CONTRIBUTION_ID, CONTEXT_DEBUG_STATE, CONTEXT_IN_DEBUG_MODE, CONTEXT_STEP_INTO_TARGETS_SUPPORTED, CONTEXT_FOCUSED_SESSION_IS_ATTACH, CONTEXT_TERMINATE_DEBUGGEE_SUPPORTED, CONTEXT_DEBUGGERS_AVAILABLE, getStateLabel, CONTEXT_CALLSTACK_ITEM_TYPE, CONTEXT_SUSPEND_DEBUGGEE_SUPPORTED, CONTEXT_RESTART_FRAME_SUPPORTED, CONTEXT_VARIABLE_IS_READONLY, CONTEXT_SET_VARIABLE_SUPPORTED, CONTEXT_VARIABLE_EVALUATE_NAME_PRESENT, CONTEXT_SET_EXPRESSION_SUPPORTED, CONTEXT_WATCH_ITEM_TYPE, DEBUG_PANEL_ID, REPL_VIEW_ID, VIEWLET_ID, VARIABLES_VIEW_ID, CONTEXT_DEBUG_UX, WATCH_VIEW_ID, CALLSTACK_VIEW_ID, BREAKPOINTS_VIEW_ID, CONTEXT_BREAKPOINTS_EXIST, CONTEXT_HAS_DEBUGGED, LOADED_SCRIPTS_VIEW_ID, CONTEXT_LOADED_SCRIPTS_SUPPORTED, DISASSEMBLY_VIEW_ID, INTERNAL_CONSOLE_OPTIONS_SCHEMA, CONTEXT_JUMP_TO_CURSOR_SUPPORTED, CONTEXT_STACK_FRAME_SUPPORTS_RESTART, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_BREAK_WHEN_VALUE_IS_READ_SUPPORTED, CONTEXT_BREAK_WHEN_VALUE_CHANGES_SUPPORTED, CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
41
41
  import { DebugContentProvider } from '../common/debugContentProvider.js';
42
42
  import { DebugLifecycle } from '../common/debugLifecycle.js';
43
- import { DisassemblyViewInput } from '../common/disassemblyViewInput.js';
43
+ import { DisassemblyViewInput } from 'vscode/vscode/vs/workbench/contrib/debug/common/disassemblyViewInput';
44
44
  import { launchSchemaId } from 'vscode/vscode/vs/workbench/services/configuration/common/configuration';
45
45
 
46
46
  const debugCategory = ( nls.localizeWithPath(
@@ -3,13 +3,13 @@ import { List } from 'monaco-editor/esm/vs/base/browser/ui/list/listWidget.js';
3
3
  import { KeybindingsRegistry } from 'monaco-editor/esm/vs/platform/keybinding/common/keybindingsRegistry.js';
4
4
  import { IListService } from 'monaco-editor/esm/vs/platform/list/browser/listService.js';
5
5
  import { IDebugService, CONTEXT_DISASSEMBLY_VIEW_FOCUS, CONTEXT_JUMP_TO_CURSOR_SUPPORTED, CONTEXT_IN_DEBUG_REPL, CONTEXT_IN_DEBUG_MODE, CONTEXT_DEBUG_STATE, CONTEXT_STEP_INTO_TARGETS_SUPPORTED, CONTEXT_FOCUSED_SESSION_IS_ATTACH, REPL_VIEW_ID, CONTEXT_BREAKPOINTS_FOCUSED, CONTEXT_WATCH_EXPRESSIONS_FOCUSED, CONTEXT_VARIABLES_FOCUSED, CONTEXT_EXPRESSION_SELECTED, CONTEXT_BREAKPOINT_INPUT_FOCUSED, EDITOR_CONTRIBUTION_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
6
- import { Expression, Variable, Breakpoint, FunctionBreakpoint, DataBreakpoint } from '../common/debugModel.js';
6
+ import { Expression, Variable, Breakpoint, FunctionBreakpoint, DataBreakpoint } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
7
7
  import { isCodeEditor } from 'monaco-editor/esm/vs/editor/browser/editorBrowser.js';
8
8
  import { MenuRegistry, MenuId, registerAction2, Action2 } from 'monaco-editor/esm/vs/platform/actions/common/actions.js';
9
9
  import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
10
10
  import { EditorContextKeys } from 'monaco-editor/esm/vs/editor/common/editorContextKeys.js';
11
11
  import { IContextKeyService, ContextKeyExpr } from 'monaco-editor/esm/vs/platform/contextkey/common/contextkey.js';
12
- import { openBreakpointSource } from './breakpointsView.js';
12
+ import { openBreakpointSource } from 'vscode/vscode/vs/workbench/contrib/debug/browser/breakpointsView';
13
13
  import { INotificationService } from 'monaco-editor/esm/vs/platform/notification/common/notification.js';
14
14
  import { InputFocusedContext } from 'monaco-editor/esm/vs/platform/contextkey/common/contextkeys.js';
15
15
  import { ResourceContextKey, ActiveEditorContext, PanelFocusContext } from 'vscode/vscode/vs/workbench/common/contextkeys';
@@ -15,11 +15,11 @@ import { IContextMenuService } from 'monaco-editor/esm/vs/platform/contextview/b
15
15
  import { IUriIdentityService } from 'monaco-editor/esm/vs/platform/uriIdentity/common/uriIdentity.js';
16
16
  import { PanelFocusContext } from 'vscode/vscode/vs/workbench/common/contextkeys';
17
17
  import { IViewsService } from 'vscode/vscode/vs/workbench/common/views';
18
- import { openBreakpointSource } from './breakpointsView.js';
18
+ import { openBreakpointSource } from 'vscode/vscode/vs/workbench/contrib/debug/browser/breakpointsView';
19
19
  import { DisassemblyView } from './disassemblyView.js';
20
20
  import { 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, CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DISASSEMBLY_VIEW_FOCUS, IDebugService, REPL_VIEW_ID, WATCH_VIEW_ID, CONTEXT_STEP_INTO_TARGETS_SUPPORTED, BREAKPOINT_EDITOR_CONTRIBUTION_ID, EDITOR_CONTRIBUTION_ID, CONTEXT_EXCEPTION_WIDGET_VISIBLE } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
21
21
  import { getEvaluatableExpressionAtPosition } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
22
- import { DisassemblyViewInput } from '../common/disassemblyViewInput.js';
22
+ import { DisassemblyViewInput } from 'vscode/vscode/vs/workbench/contrib/debug/common/disassemblyViewInput';
23
23
  import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
24
24
 
25
25
  class ToggleBreakpointAction extends Action2 {
@@ -36,7 +36,7 @@ import { IUriIdentityService } from 'monaco-editor/esm/vs/platform/uriIdentity/c
36
36
  import { DebugHoverWidget } from './debugHover.js';
37
37
  import { ExceptionWidget } from './exceptionWidget.js';
38
38
  import { CONTEXT_EXCEPTION_WIDGET_VISIBLE, IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
39
- import { Expression } from '../common/debugModel.js';
39
+ import { Expression } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
40
40
  import { IHostService } from 'vscode/vscode/vs/workbench/services/host/browser/host';
41
41
 
42
42
  const MAX_NUM_INLINE_VALUES = 100;
@@ -18,7 +18,7 @@ import { renderExpressionValue } from './baseDebugView.js';
18
18
  import { LinkDetector } from './linkDetector.js';
19
19
  import { VariablesRenderer } from './variablesView.js';
20
20
  import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
21
- import { Variable, Expression } from '../common/debugModel.js';
21
+ import { Variable, Expression } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
22
22
  import { getEvaluatableExpressionAtPosition } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
23
23
 
24
24
  var DebugHoverWidget_1;
@@ -34,12 +34,12 @@ import { DebugSession } from './debugSession.js';
34
34
  import { DebugTaskRunner } from './debugTaskRunner.js';
35
35
  import { CALLSTACK_VIEW_ID, DEBUG_MEMORY_SCHEME, CONTEXT_DEBUG_TYPE, CONTEXT_DEBUG_STATE, CONTEXT_HAS_DEBUGGED, CONTEXT_IN_DEBUG_MODE, CONTEXT_DEBUG_UX, CONTEXT_BREAKPOINTS_EXIST, CONTEXT_DISASSEMBLY_VIEW_FOCUS, getStateLabel, debuggerDisabledMessage, VIEWLET_ID, REPL_VIEW_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
36
36
  import { DebugCompoundRoot } from '../common/debugCompoundRoot.js';
37
- import { DebugModel, Breakpoint, FunctionBreakpoint, DataBreakpoint, InstructionBreakpoint } from '../common/debugModel.js';
37
+ import { DebugModel, Breakpoint, FunctionBreakpoint, DataBreakpoint, InstructionBreakpoint } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
38
38
  import { DebugStorage } from '../common/debugStorage.js';
39
39
  import { DebugTelemetry } from '../common/debugTelemetry.js';
40
40
  import { saveAllBeforeDebugStart, getExtensionHostDebugSession } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
41
41
  import { ViewModel } from '../common/debugViewModel.js';
42
- import { DisassemblyViewInput } from '../common/disassemblyViewInput.js';
42
+ import { DisassemblyViewInput } from 'vscode/vscode/vs/workbench/contrib/debug/common/disassemblyViewInput';
43
43
  import { VIEWLET_ID as VIEWLET_ID$1 } from 'vscode/vscode/vs/workbench/contrib/files/common/files';
44
44
  import { NumberBadge, IActivityService } from 'vscode/vscode/vs/workbench/services/activity/common/activity';
45
45
  import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
@@ -23,8 +23,8 @@ import { IUriIdentityService } from 'monaco-editor/esm/vs/platform/uriIdentity/c
23
23
  import { IWorkspaceContextService } from 'monaco-editor/esm/vs/platform/workspace/common/workspace.js';
24
24
  import { RawDebugSession } from './rawDebugSession.js';
25
25
  import { IDebugService, VIEWLET_ID } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
26
- import { MemoryRegion, ExpressionContainer, Thread } from '../common/debugModel.js';
27
- import { Source } from '../common/debugSource.js';
26
+ import { MemoryRegion, ExpressionContainer, Thread } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
27
+ import { Source } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugSource';
28
28
  import { filterExceptionsFromTelemetry } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
29
29
  import { ReplModel } from '../common/replModel.js';
30
30
  import { IWorkbenchEnvironmentService } from 'vscode/vscode/vs/workbench/services/environment/common/environmentService';
@@ -24,11 +24,11 @@ import { editorBackground } from 'monaco-editor/esm/vs/platform/theme/common/col
24
24
  import { IThemeService } from 'monaco-editor/esm/vs/platform/theme/common/themeService.js';
25
25
  import { IUriIdentityService } from 'monaco-editor/esm/vs/platform/uriIdentity/common/uriIdentity.js';
26
26
  import { EditorPane } from 'vscode/vscode/vs/workbench/browser/parts/editor/editorPane';
27
- import { topStackFrameColor, focusedStackFrameColor } from './callStackEditorContribution.js';
27
+ import { topStackFrameColor, focusedStackFrameColor } from 'vscode/vscode/vs/workbench/contrib/debug/browser/callStackEditorContribution';
28
28
  import { breakpoint, debugBreakpointHint, debugStackframe, debugStackframeFocused } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugIcons';
29
29
  import { DISASSEMBLY_VIEW_ID, CONTEXT_LANGUAGE_SUPPORTS_DISASSEMBLE_REQUEST, IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
30
- import { InstructionBreakpoint } from '../common/debugModel.js';
31
- import { getUriFromSource } from '../common/debugSource.js';
30
+ import { InstructionBreakpoint } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
31
+ import { getUriFromSource } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugSource';
32
32
  import { isUri, sourcesEqual } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugUtils';
33
33
  import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
34
34
 
@@ -50,7 +50,7 @@ import { LinkDetector } from './linkDetector.js';
50
50
  import { ReplFilter } from './replFilter.js';
51
51
  import { ReplDelegate, ReplVariablesRenderer, ReplOutputElementRenderer, ReplEvaluationInputsRenderer, ReplGroupRenderer, ReplEvaluationResultsRenderer, ReplRawObjectsRenderer, ReplDataSource, ReplAccessibilityProvider } from './replViewer.js';
52
52
  import { DEBUG_SCHEME, CONTEXT_MULTI_SESSION_REPL, CONTEXT_IN_DEBUG_REPL, REPL_VIEW_ID, IDebugService, CONTEXT_DEBUG_STATE, getStateLabel } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
53
- import { Variable } from '../common/debugModel.js';
53
+ import { Variable } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
54
54
  import { ReplEvaluationResult, ReplGroup } from '../common/replModel.js';
55
55
  import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
56
56
  import { registerNavigableContainer } from 'vscode/vscode/vs/workbench/browser/actions/widgetNavigationCommands';
@@ -1,7 +1,7 @@
1
1
  import { matchesFuzzy } from 'monaco-editor/esm/vs/base/common/filters.js';
2
2
  import { splitGlobAware } from 'monaco-editor/esm/vs/base/common/glob.js';
3
3
  import { ReplEvaluationInput, ReplEvaluationResult } from '../common/replModel.js';
4
- import { Variable } from '../common/debugModel.js';
4
+ import { Variable } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
5
5
 
6
6
  class ReplFilter {
7
7
  constructor() {
@@ -17,7 +17,7 @@ import { renderExpressionValue, AbstractExpressionsRenderer, renderVariable } fr
17
17
  import { handleANSIOutput } from './debugANSIHandling.js';
18
18
  import { debugConsoleEvaluationInput } from 'vscode/vscode/vs/workbench/contrib/debug/browser/debugIcons';
19
19
  import { IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
20
- import { Variable } from '../common/debugModel.js';
20
+ import { Variable } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
21
21
  import { ReplVariableElement, ReplEvaluationResult, ReplOutputElement, ReplEvaluationInput, ReplGroup, RawObjectReplElement } from '../common/replModel.js';
22
22
  import { IEditorService } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
23
23
 
@@ -27,7 +27,7 @@ import { IViewDescriptorService } from 'vscode/vscode/vs/workbench/common/views'
27
27
  import { AbstractExpressionsRenderer, renderVariable, renderViewTree } from './baseDebugView.js';
28
28
  import { LinkDetector } from './linkDetector.js';
29
29
  import { IDebugService, VARIABLES_VIEW_ID, CONTEXT_VARIABLES_FOCUSED, CONTEXT_BREAK_WHEN_VALUE_CHANGES_SUPPORTED, CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED, CONTEXT_BREAK_WHEN_VALUE_IS_READ_SUPPORTED, CONTEXT_DEBUG_PROTOCOL_VARIABLE_MENU_CONTEXT, CONTEXT_VARIABLE_EVALUATE_NAME_PRESENT, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_VARIABLE_IS_READONLY } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
30
- import { Variable, getUriForDebugMemory, Expression, ErrorScope, Scope, StackFrame } from '../common/debugModel.js';
30
+ import { Variable, getUriForDebugMemory, Expression, ErrorScope, Scope, StackFrame } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
31
31
  import { IEditorService, SIDE_GROUP } from 'vscode/vscode/vs/workbench/services/editor/common/editorService';
32
32
  import { IExtensionService } from 'vscode/vscode/vs/workbench/services/extensions/common/extensions';
33
33
 
@@ -1,7 +1,7 @@
1
1
  import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
2
2
  import { RunOnceScheduler } from 'monaco-editor/esm/vs/base/common/async.js';
3
3
  import { CONTEXT_CAN_VIEW_MEMORY, CONTEXT_WATCH_ITEM_TYPE, WATCH_VIEW_ID, CONTEXT_WATCH_EXPRESSIONS_EXIST, IDebugService, CONTEXT_VARIABLE_IS_READONLY, CONTEXT_WATCH_EXPRESSIONS_FOCUSED } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
4
- import { Variable, Expression } from '../common/debugModel.js';
4
+ import { Variable, Expression } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
5
5
  import { IContextMenuService, IContextViewService } from 'monaco-editor/esm/vs/platform/contextview/browser/contextView.js';
6
6
  import { IInstantiationService } from 'monaco-editor/esm/vs/platform/instantiation/common/instantiation.js';
7
7
  import { IKeybindingService } from 'monaco-editor/esm/vs/platform/keybinding/common/keybinding.js';
@@ -5,7 +5,7 @@ import { IModelService } from 'monaco-editor/esm/vs/editor/common/services/model
5
5
  import { ILanguageService } from 'monaco-editor/esm/vs/editor/common/languages/language.js';
6
6
  import { ITextModelService } from 'monaco-editor/esm/vs/editor/common/services/resolverService.js';
7
7
  import { DEBUG_SCHEME, IDebugService } from 'vscode/vscode/vs/workbench/contrib/debug/common/debug';
8
- import { Source } from './debugSource.js';
8
+ import { Source } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugSource';
9
9
  import { IEditorWorkerService } from 'monaco-editor/esm/vs/editor/common/services/editorWorker.js';
10
10
  import { EditOperation } from 'monaco-editor/esm/vs/editor/common/core/editOperation.js';
11
11
  import { Range } from 'monaco-editor/esm/vs/editor/common/core/range.js';
@@ -1,7 +1,7 @@
1
1
  import { __decorate, __param } from '../../../../../../../external/tslib/tslib.es6.js';
2
2
  import { URI } from 'monaco-editor/esm/vs/base/common/uri.js';
3
3
  import { IStorageService } from 'monaco-editor/esm/vs/platform/storage/common/storage.js';
4
- import { Breakpoint, FunctionBreakpoint, ExceptionBreakpoint, DataBreakpoint, Expression } from './debugModel.js';
4
+ import { Breakpoint, FunctionBreakpoint, ExceptionBreakpoint, DataBreakpoint, Expression } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
5
5
  import { ITextFileService } from 'vscode/vscode/vs/workbench/services/textfile/common/textfiles';
6
6
  import { IUriIdentityService } from 'monaco-editor/esm/vs/platform/uriIdentity/common/uriIdentity.js';
7
7
  import { ILogService } from 'monaco-editor/esm/vs/platform/log/common/log.js';
@@ -3,7 +3,7 @@ import Severity from 'monaco-editor/esm/vs/base/common/severity.js';
3
3
  import { isObject, isString } from 'monaco-editor/esm/vs/base/common/types.js';
4
4
  import { generateUuid } from 'monaco-editor/esm/vs/base/common/uuid.js';
5
5
  import * as nls from 'monaco-editor/esm/vs/nls.js';
6
- import { ExpressionContainer } from './debugModel.js';
6
+ import { ExpressionContainer } from 'vscode/vscode/vs/workbench/contrib/debug/common/debugModel';
7
7
 
8
8
  const MAX_REPL_LENGTH = 10000;
9
9
  let topReplElementCounter = 0;