@codingame/monaco-vscode-debug-service-override 23.2.2 → 24.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/package.json +2 -14
  2. package/service-override/tools/debugAssets.js +1 -1
  3. package/vscode/src/vs/platform/debug/common/extensionHostDebugIpc.d.ts +1 -1
  4. package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.d.ts +3 -3
  5. package/vscode/src/vs/workbench/contrib/debug/browser/callStackView.js +21 -21
  6. package/vscode/src/vs/workbench/contrib/debug/browser/debug.contribution.js +128 -126
  7. package/vscode/src/vs/workbench/contrib/debug/browser/debugAdapterManager.js +13 -13
  8. package/vscode/src/vs/workbench/contrib/debug/browser/debugChatIntegration.d.ts +8 -0
  9. package/vscode/src/vs/workbench/contrib/debug/browser/debugChatIntegration.js +430 -0
  10. package/vscode/src/vs/workbench/contrib/debug/browser/debugConfigurationManager.js +7 -7
  11. package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.d.ts +1 -1
  12. package/vscode/src/vs/workbench/contrib/debug/browser/debugConsoleQuickAccess.js +3 -3
  13. package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorActions.js +27 -27
  14. package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.d.ts +1 -1
  15. package/vscode/src/vs/workbench/contrib/debug/browser/debugQuickAccess.js +12 -12
  16. package/vscode/src/vs/workbench/contrib/debug/browser/debugService.d.ts +1 -1
  17. package/vscode/src/vs/workbench/contrib/debug/browser/debugService.js +27 -27
  18. package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.d.ts +4 -4
  19. package/vscode/src/vs/workbench/contrib/debug/browser/debugSession.js +47 -47
  20. package/vscode/src/vs/workbench/contrib/debug/browser/debugStatus.js +3 -3
  21. package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.d.ts +1 -1
  22. package/vscode/src/vs/workbench/contrib/debug/browser/debugTaskRunner.js +19 -19
  23. package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.d.ts +1 -1
  24. package/vscode/src/vs/workbench/contrib/debug/browser/debugToolBar.js +8 -8
  25. package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.d.ts +2 -2
  26. package/vscode/src/vs/workbench/contrib/debug/browser/debugViewlet.js +9 -9
  27. package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.d.ts +1 -1
  28. package/vscode/src/vs/workbench/contrib/debug/browser/disassemblyView.js +15 -15
  29. package/vscode/src/vs/workbench/contrib/debug/browser/extensionHostDebugService.d.ts +1 -1
  30. package/vscode/src/vs/workbench/contrib/debug/browser/extensionHostDebugService.js +1 -1
  31. package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.d.ts +2 -2
  32. package/vscode/src/vs/workbench/contrib/debug/browser/loadedScriptsView.js +10 -10
  33. package/vscode/src/vs/workbench/contrib/debug/browser/rawDebugSession.js +8 -8
  34. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.d.ts +1 -1
  35. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibilityHelp.js +9 -9
  36. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibleView.d.ts +1 -1
  37. package/vscode/src/vs/workbench/contrib/debug/browser/replAccessibleView.js +1 -1
  38. package/vscode/src/vs/workbench/contrib/debug/browser/runAndDebugAccessibilityHelp.js +16 -16
  39. package/vscode/src/vs/workbench/contrib/debug/browser/statusbarColorProvider.js +4 -4
  40. package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.d.ts +4 -4
  41. package/vscode/src/vs/workbench/contrib/debug/browser/watchExpressionsView.js +17 -17
  42. package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.d.ts +2 -2
  43. package/vscode/src/vs/workbench/contrib/debug/browser/welcomeView.js +9 -9
  44. package/vscode/src/vs/workbench/contrib/debug/common/debugAccessibilityAnnouncer.js +1 -1
  45. package/vscode/src/vs/workbench/contrib/debug/common/debugContentProvider.js +4 -4
  46. package/vscode/src/vs/workbench/contrib/debug/common/debugLifecycle.js +3 -3
  47. package/vscode/src/vs/workbench/contrib/debug/common/debugSchemas.js +46 -46
  48. package/vscode/src/vs/workbench/contrib/debug/common/debugStorage.d.ts +1 -1
  49. package/vscode/src/vs/workbench/contrib/debug/common/debugStorage.js +1 -1
  50. package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.d.ts +1 -1
  51. package/vscode/src/vs/workbench/contrib/debug/common/debugVisualizers.js +2 -2
  52. package/vscode/src/vs/workbench/contrib/debug/common/debugger.js +12 -12
  53. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariableCommands.js +2 -2
@@ -22,17 +22,17 @@ import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platfor
22
22
  import { WorkbenchAsyncDataTree } from '@codingame/monaco-vscode-api/vscode/vs/platform/list/browser/listService';
23
23
  import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
24
24
  import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
25
- import { ViewPane, ViewAction } from '@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane';
25
+ import { ViewPane, ViewAction } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/views/viewPane';
26
26
  import { FocusedViewContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
27
27
  import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
28
28
  import { CONTEXT_WATCH_EXPRESSIONS_EXIST, CONTEXT_WATCH_EXPRESSIONS_FOCUSED, CONTEXT_VARIABLE_EVALUATE_NAME_PRESENT, CONTEXT_WATCH_ITEM_TYPE, CONTEXT_CAN_VIEW_MEMORY, CONTEXT_VARIABLE_IS_READONLY, CONTEXT_VARIABLE_TYPE, CONTEXT_DEBUG_TYPE, CONTEXT_BREAK_WHEN_VALUE_CHANGES_SUPPORTED, CONTEXT_BREAK_WHEN_VALUE_IS_ACCESSED_SUPPORTED, CONTEXT_BREAK_WHEN_VALUE_IS_READ_SUPPORTED, WATCH_VIEW_ID, CONTEXT_EXPRESSION_SELECTED } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
29
29
  import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
30
- import { Expression, Variable, VisualizedExpression } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
31
- import { renderViewTree, expressionAndScopeLabelProvider, AbstractExpressionDataSource, AbstractExpressionsRenderer } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/baseDebugView';
32
- import { setDataBreakpointInfoResponse, COPY_WATCH_EXPRESSION_COMMAND_ID } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugCommands';
33
- import { DebugExpressionRenderer } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugExpressionRenderer';
34
- import { watchExpressionsAdd, watchExpressionsRemoveAll } from '@codingame/monaco-vscode-2c64d2c2-fdf7-5675-a2fe-f6f65fbdedbf-common/vscode/vs/workbench/contrib/debug/browser/debugIcons';
35
- import { VariablesRenderer, VisualizedVariableRenderer } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/variablesView';
30
+ import { Expression, Variable, VisualizedExpression } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugModel';
31
+ import { renderViewTree, expressionAndScopeLabelProvider, AbstractExpressionDataSource, AbstractExpressionsRenderer } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/baseDebugView';
32
+ import { setDataBreakpointInfoResponse, COPY_WATCH_EXPRESSION_COMMAND_ID } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/debugCommands';
33
+ import { DebugExpressionRenderer } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/debugExpressionRenderer';
34
+ import { watchExpressionsAdd, watchExpressionsRemoveAll } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/debugIcons';
35
+ import { VariablesRenderer, VisualizedVariableRenderer } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/variablesView';
36
36
 
37
37
  var WatchExpressionsRenderer_1;
38
38
  const MAX_VALUE_RENDER_LENGTH_IN_VIEWLET = 1024;
@@ -291,7 +291,7 @@ let WatchExpressionsRenderer = class WatchExpressionsRenderer extends AbstractEx
291
291
  if (settingValue) {
292
292
  return {
293
293
  initialValue: expression.value,
294
- ariaLabel: ( localize(6856, "Type new value")),
294
+ ariaLabel: ( localize(6992, "Type new value")),
295
295
  onFinish: async (value, success) => {
296
296
  if (success && value) {
297
297
  const focusedFrame = this.debugService.getViewModel().focusedStackFrame;
@@ -305,8 +305,8 @@ let WatchExpressionsRenderer = class WatchExpressionsRenderer extends AbstractEx
305
305
  }
306
306
  return {
307
307
  initialValue: expression.name ? expression.name : '',
308
- ariaLabel: ( localize(6857, "Type watch expression")),
309
- placeholder: ( localize(6858, "Expression to watch")),
308
+ ariaLabel: ( localize(6993, "Type watch expression")),
309
+ placeholder: ( localize(6994, "Expression to watch")),
310
310
  onFinish: (value, success) => {
311
311
  if (success && value) {
312
312
  this.debugService.renameWatchExpression(expression.getId(), value);
@@ -397,13 +397,13 @@ async function getContextForWatchExpressionMenuWithDataAccess(parentContext, exp
397
397
  }
398
398
  class WatchExpressionsAccessibilityProvider {
399
399
  getWidgetAriaLabel() {
400
- return localize(6859, "Debug Watch Expressions");
400
+ return localize(6995, "Debug Watch Expressions");
401
401
  }
402
402
  getAriaLabel(element) {
403
403
  if (element instanceof Expression) {
404
- return localize(6860, "{0}, value {1}", element.name, element.value);
404
+ return localize(6996, "{0}, value {1}", element.name, element.value);
405
405
  }
406
- return localize(6861, "{0}, value {1}", element.name, element.value);
406
+ return localize(6997, "{0}, value {1}", element.name, element.value);
407
407
  }
408
408
  }
409
409
  class WatchExpressionsDragAndDrop {
@@ -489,7 +489,7 @@ registerAction2(class Collapse extends ViewAction {
489
489
  super({
490
490
  id: 'watch.collapse',
491
491
  viewId: WATCH_VIEW_ID,
492
- title: ( localize(6862, "Collapse All")),
492
+ title: ( localize(6998, "Collapse All")),
493
493
  f1: false,
494
494
  icon: Codicon.collapseAll,
495
495
  precondition: CONTEXT_WATCH_EXPRESSIONS_EXIST,
@@ -506,7 +506,7 @@ registerAction2(class Collapse extends ViewAction {
506
506
  }
507
507
  });
508
508
  const ADD_WATCH_ID = 'workbench.debug.viewlet.action.addWatchExpression';
509
- const ADD_WATCH_LABEL = ( localize(6863, "Add Expression"));
509
+ const ADD_WATCH_LABEL = ( localize(6999, "Add Expression"));
510
510
  registerAction2(class AddWatchExpressionAction extends Action2 {
511
511
  constructor() {
512
512
  super({
@@ -527,7 +527,7 @@ registerAction2(class AddWatchExpressionAction extends Action2 {
527
527
  }
528
528
  });
529
529
  const REMOVE_WATCH_EXPRESSIONS_COMMAND_ID = 'workbench.debug.viewlet.action.removeAllWatchExpressions';
530
- const REMOVE_WATCH_EXPRESSIONS_LABEL = ( localize(6864, "Remove All Expressions"));
530
+ const REMOVE_WATCH_EXPRESSIONS_LABEL = ( localize(7000, "Remove All Expressions"));
531
531
  registerAction2(class RemoveAllWatchExpressionsAction extends Action2 {
532
532
  constructor() {
533
533
  super({
@@ -553,7 +553,7 @@ registerAction2(class CopyExpression extends ViewAction {
553
553
  constructor() {
554
554
  super({
555
555
  id: COPY_WATCH_EXPRESSION_COMMAND_ID,
556
- title: ( localize(6865, "Copy Expression")),
556
+ title: ( localize(7001, "Copy Expression")),
557
557
  f1: false,
558
558
  viewId: WATCH_VIEW_ID,
559
559
  precondition: CONTEXT_WATCH_EXPRESSIONS_EXIST,
@@ -8,8 +8,8 @@ import { IKeybindingService } from "@codingame/monaco-vscode-api/vscode/vs/platf
8
8
  import { IOpenerService } from "@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service";
9
9
  import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
10
10
  import { IThemeService } from "@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service";
11
- import { ViewPane } from "@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane";
12
- import { IViewletViewOptions } from "@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common/vscode/vs/workbench/browser/parts/views/viewsViewlet";
11
+ import { ViewPane } from "@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/views/viewPane";
12
+ import { IViewletViewOptions } from "@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/views/viewsViewlet";
13
13
  import { IViewDescriptorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service";
14
14
  import { IEditorService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service";
15
15
  import { IDebugService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service";
@@ -16,22 +16,22 @@ import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/regist
16
16
  import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
17
17
  import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
18
18
  import { IThemeService } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/common/themeService.service';
19
- import { OpenFileAction, OpenFolderAction } from '@codingame/monaco-vscode-f24e325c-2ce0-5bba-8236-bfc4f53180ab-common/vscode/vs/workbench/browser/actions/workspaceActions';
20
- import { ViewPane } from '@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common/vscode/vs/workbench/browser/parts/views/viewPane';
19
+ import { OpenFileAction, OpenFolderAction } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/actions/workspaceActions';
20
+ import { ViewPane } from '@codingame/monaco-vscode-api/vscode/vs/workbench/browser/parts/views/viewPane';
21
21
  import { WorkbenchStateContext } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contextkeys';
22
22
  import { Extensions, ViewContentGroups } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views';
23
23
  import { IViewDescriptorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/views.service';
24
24
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
25
25
  import { CONTEXT_DEBUGGERS_AVAILABLE, CONTEXT_DEBUG_EXTENSION_AVAILABLE } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
26
26
  import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
27
- import { DEBUG_START_COMMAND_ID, DEBUG_CONFIGURE_COMMAND_ID } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/browser/debugCommands';
27
+ import { DEBUG_START_COMMAND_ID, DEBUG_CONFIGURE_COMMAND_ID } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/browser/debugCommands';
28
28
 
29
29
  const debugStartLanguageKey = 'debugStartLanguage';
30
30
  const CONTEXT_DEBUG_START_LANGUAGE = ( new RawContextKey(debugStartLanguageKey, undefined));
31
31
  const CONTEXT_DEBUGGER_INTERESTED_IN_ACTIVE_EDITOR = ( new RawContextKey('debuggerInterestedInActiveEditor', false));
32
32
  let WelcomeView = class WelcomeView extends ViewPane {
33
33
  static { this.ID = 'workbench.debug.welcome'; }
34
- static { this.LABEL = ( localize2(6866, "Run")); }
34
+ static { this.LABEL = ( localize2(7002, "Run")); }
35
35
  constructor(options, themeService, keybindingService, contextMenuService, configurationService, contextKeyService, debugService, editorService, instantiationService, viewDescriptorService, openerService, storageSevice, hoverService) {
36
36
  super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, hoverService);
37
37
  this.debugService = debugService;
@@ -101,7 +101,7 @@ WelcomeView = ( __decorate([
101
101
  const viewsRegistry = ( Registry.as(Extensions.ViewsRegistry));
102
102
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
103
103
  content: ( localize(
104
- 6867,
104
+ 7003,
105
105
  "[Open a file](command:{0}) which can be debugged or run.",
106
106
  OpenFileAction.ID
107
107
  )),
@@ -110,14 +110,14 @@ viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
110
110
  });
111
111
  let debugKeybindingLabel = '';
112
112
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
113
- content: `[${( localize(6868, "Run and Debug"))}${debugKeybindingLabel}](command:${DEBUG_START_COMMAND_ID})`,
113
+ content: `[${( localize(7004, "Run and Debug"))}${debugKeybindingLabel}](command:${DEBUG_START_COMMAND_ID})`,
114
114
  when: CONTEXT_DEBUGGERS_AVAILABLE,
115
115
  group: ViewContentGroups.Debug,
116
116
  order: 1
117
117
  });
118
118
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
119
119
  content: ( localize(
120
- 6869,
120
+ 7005,
121
121
  "To customize Run and Debug [create a launch.json file]({0}).",
122
122
  `${( createCommandUri(DEBUG_CONFIGURE_COMMAND_ID, { addNew: true }).toString())}`
123
123
  )),
@@ -126,7 +126,7 @@ viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
126
126
  });
127
127
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
128
128
  content: ( localize(
129
- 6870,
129
+ 7006,
130
130
  "To customize Run and Debug, [open a folder]({0}) and create a launch.json file.",
131
131
  (createCommandUri(OpenFolderAction.ID).toString())
132
132
  )),
@@ -135,7 +135,7 @@ viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
135
135
  });
136
136
  viewsRegistry.registerViewWelcomeContent(WelcomeView.ID, {
137
137
  content: ( localize(
138
- 6871,
138
+ 7007,
139
139
  "All debug extensions are disabled. Enable a debug extension or install a new one from the Marketplace."
140
140
  )),
141
141
  when: ( CONTEXT_DEBUG_EXTENSION_AVAILABLE.toNegated()),
@@ -5,7 +5,7 @@ import { Disposable, MutableDisposable } from '@codingame/monaco-vscode-api/vsco
5
5
  import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
6
6
  import { IAccessibilityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/common/accessibility.service';
7
7
  import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
8
- import { Expression } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
8
+ import { Expression } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugModel';
9
9
 
10
10
  let DebugWatchAccessibilityAnnouncer = class DebugWatchAccessibilityAnnouncer extends Disposable {
11
11
  static { this.ID = 'workbench.contrib.debugWatchAccessibilityAnnouncer'; }
@@ -7,7 +7,7 @@ import { ILanguageService } from '@codingame/monaco-vscode-api/vscode/vs/editor/
7
7
  import { ITextModelService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/resolverService.service';
8
8
  import { DEBUG_SCHEME } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
9
9
  import { IDebugService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug.service';
10
- import { Source } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugSource';
10
+ import { Source } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugSource';
11
11
  import { IEditorWorkerService } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/services/editorWorker.service';
12
12
  import { EditOperation } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/editOperation';
13
13
  import { Range } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/core/range';
@@ -53,14 +53,14 @@ let DebugContentProvider = class DebugContentProvider extends Disposable {
53
53
  session = this.debugService.getViewModel().focusedSession;
54
54
  }
55
55
  if (!session) {
56
- return Promise.reject(( new ErrorNoTelemetry(( localize(6938, "Unable to resolve the resource without a debug session")))));
56
+ return Promise.reject(( new ErrorNoTelemetry(( localize(7074, "Unable to resolve the resource without a debug session")))));
57
57
  }
58
58
  const createErrModel = (errMsg) => {
59
59
  this.debugService.sourceIsNotAvailable(resource);
60
60
  const languageSelection = this.languageService.createById(PLAINTEXT_LANGUAGE_ID);
61
61
  const message = errMsg
62
- ? ( localize(6939, "Could not load source '{0}': {1}.", resource.path, errMsg))
63
- : ( localize(6940, "Could not load source '{0}'.", resource.path));
62
+ ? ( localize(7075, "Could not load source '{0}': {1}.", resource.path, errMsg))
63
+ : ( localize(7076, "Could not load source '{0}'.", resource.path));
64
64
  return this.modelService.createModel(message, languageSelection, resource);
65
65
  };
66
66
  return session.loadSource(resource).then(response => {
@@ -31,20 +31,20 @@ let DebugLifecycle = class DebugLifecycle {
31
31
  let message;
32
32
  if (numSessions === 1) {
33
33
  message = ( localize(
34
- 6941,
34
+ 7077,
35
35
  "There is an active debug session, are you sure you want to stop it?"
36
36
  ));
37
37
  }
38
38
  else {
39
39
  message = ( localize(
40
- 6942,
40
+ 7078,
41
41
  "There are active debug sessions, are you sure you want to stop them?"
42
42
  ));
43
43
  }
44
44
  const res = await this.dialogService.confirm({
45
45
  message,
46
46
  type: 'warning',
47
- primaryButton: ( localize(6943, "&&Stop Debugging"))
47
+ primaryButton: ( localize(7079, "&&Stop Debugging"))
48
48
  });
49
49
  return !res.confirmed;
50
50
  }
@@ -1,8 +1,8 @@
1
1
 
2
2
  import { ExtensionsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry';
3
3
  import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
4
- import { launchSchemaId } from '@codingame/monaco-vscode-ce7c734f-7712-563c-9335-d7acb43306af-common/vscode/vs/workbench/services/configuration/common/configuration';
5
- import { inputsSchema } from '@codingame/monaco-vscode-ce7c734f-7712-563c-9335-d7acb43306af-common/vscode/vs/workbench/services/configurationResolver/common/configurationResolverSchema';
4
+ import { launchSchemaId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/configuration/common/configuration';
5
+ import { inputsSchema } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/configurationResolver/common/configurationResolverSchema';
6
6
  import { Disposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
7
7
  import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensionManagement/common/extensionFeatures';
8
8
  import { SyncDescriptor } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/descriptors';
@@ -12,7 +12,7 @@ const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
12
12
  extensionPoint: 'debuggers',
13
13
  defaultExtensionKind: ['workspace'],
14
14
  jsonSchema: {
15
- description: ( localize(6951, 'Contributes debug adapters.')),
15
+ description: ( localize(7087, 'Contributes debug adapters.')),
16
16
  type: 'array',
17
17
  defaultSnippets: [{ body: [{ type: '' }] }],
18
18
  items: {
@@ -21,64 +21,64 @@ const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
21
21
  defaultSnippets: [{ body: { type: '', program: '', runtime: '' } }],
22
22
  properties: {
23
23
  type: {
24
- description: ( localize(6952, "Unique identifier for this debug adapter.")),
24
+ description: ( localize(7088, "Unique identifier for this debug adapter.")),
25
25
  type: 'string'
26
26
  },
27
27
  label: {
28
- description: ( localize(6953, "Display name for this debug adapter.")),
28
+ description: ( localize(7089, "Display name for this debug adapter.")),
29
29
  type: 'string'
30
30
  },
31
31
  program: {
32
32
  description: ( localize(
33
- 6954,
33
+ 7090,
34
34
  "Path to the debug adapter program. Path is either absolute or relative to the extension folder."
35
35
  )),
36
36
  type: 'string'
37
37
  },
38
38
  args: {
39
- description: ( localize(6955, "Optional arguments to pass to the adapter.")),
39
+ description: ( localize(7091, "Optional arguments to pass to the adapter.")),
40
40
  type: 'array'
41
41
  },
42
42
  runtime: {
43
43
  description: ( localize(
44
- 6956,
44
+ 7092,
45
45
  "Optional runtime in case the program attribute is not an executable but requires a runtime."
46
46
  )),
47
47
  type: 'string'
48
48
  },
49
49
  runtimeArgs: {
50
- description: ( localize(6957, "Optional runtime arguments.")),
50
+ description: ( localize(7093, "Optional runtime arguments.")),
51
51
  type: 'array'
52
52
  },
53
53
  variables: {
54
54
  description: ( localize(
55
- 6958,
55
+ 7094,
56
56
  "Mapping from interactive variables (e.g. ${action.pickProcess}) in `launch.json` to a command."
57
57
  )),
58
58
  type: 'object'
59
59
  },
60
60
  initialConfigurations: {
61
- description: ( localize(6959, "Configurations for generating the initial \'launch.json\'.")),
61
+ description: ( localize(7095, "Configurations for generating the initial \'launch.json\'.")),
62
62
  type: ['array', 'string'],
63
63
  },
64
64
  languages: {
65
65
  description: ( localize(
66
- 6960,
66
+ 7096,
67
67
  "List of languages for which the debug extension could be considered the \"default debugger\"."
68
68
  )),
69
69
  type: 'array'
70
70
  },
71
71
  configurationSnippets: {
72
- description: ( localize(6961, "Snippets for adding new configurations in \'launch.json\'.")),
72
+ description: ( localize(7097, "Snippets for adding new configurations in \'launch.json\'.")),
73
73
  type: 'array'
74
74
  },
75
75
  configurationAttributes: {
76
- description: ( localize(6962, "JSON schema configurations for validating \'launch.json\'.")),
76
+ description: ( localize(7098, "JSON schema configurations for validating \'launch.json\'.")),
77
77
  type: 'object'
78
78
  },
79
79
  when: {
80
80
  description: ( localize(
81
- 6963,
81
+ 7099,
82
82
  "Condition which must be true to enable this type of debugger. Consider using 'shellExecutionSupported', 'virtualWorkspace', 'resourceScheme' or an extension-defined context key as appropriate for this."
83
83
  )),
84
84
  type: 'string',
@@ -86,54 +86,54 @@ const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
86
86
  },
87
87
  hiddenWhen: {
88
88
  description: ( localize(
89
- 6964,
89
+ 7100,
90
90
  "When this condition is true, this debugger type is hidden from the debugger list, but is still enabled."
91
91
  )),
92
92
  type: 'string',
93
93
  default: ''
94
94
  },
95
95
  deprecated: {
96
- description: ( localize(6965, "Optional message to mark this debug type as being deprecated.")),
96
+ description: ( localize(7101, "Optional message to mark this debug type as being deprecated.")),
97
97
  type: 'string',
98
98
  default: ''
99
99
  },
100
100
  windows: {
101
- description: ( localize(6966, "Windows specific settings.")),
101
+ description: ( localize(7102, "Windows specific settings.")),
102
102
  type: 'object',
103
103
  properties: {
104
104
  runtime: {
105
- description: ( localize(6967, "Runtime used for Windows.")),
105
+ description: ( localize(7103, "Runtime used for Windows.")),
106
106
  type: 'string'
107
107
  }
108
108
  }
109
109
  },
110
110
  osx: {
111
- description: ( localize(6968, "macOS specific settings.")),
111
+ description: ( localize(7104, "macOS specific settings.")),
112
112
  type: 'object',
113
113
  properties: {
114
114
  runtime: {
115
- description: ( localize(6969, "Runtime used for macOS.")),
115
+ description: ( localize(7105, "Runtime used for macOS.")),
116
116
  type: 'string'
117
117
  }
118
118
  }
119
119
  },
120
120
  linux: {
121
- description: ( localize(6970, "Linux specific settings.")),
121
+ description: ( localize(7106, "Linux specific settings.")),
122
122
  type: 'object',
123
123
  properties: {
124
124
  runtime: {
125
- description: ( localize(6971, "Runtime used for Linux.")),
125
+ description: ( localize(7107, "Runtime used for Linux.")),
126
126
  type: 'string'
127
127
  }
128
128
  }
129
129
  },
130
130
  strings: {
131
- description: ( localize(6972, "UI strings contributed by this debug adapter.")),
131
+ description: ( localize(7108, "UI strings contributed by this debug adapter.")),
132
132
  type: 'object',
133
133
  properties: {
134
134
  unverifiedBreakpoints: {
135
135
  description: ( localize(
136
- 6973,
136
+ 7109,
137
137
  "When there are unverified breakpoints in a language supported by this debug adapter, this message will appear on the breakpoint hover and in the breakpoints view. Markdown and command links are supported."
138
138
  )),
139
139
  type: 'string'
@@ -147,7 +147,7 @@ const debuggersExtPoint = ExtensionsRegistry.registerExtensionPoint({
147
147
  const breakpointsExtPoint = ExtensionsRegistry.registerExtensionPoint({
148
148
  extensionPoint: 'breakpoints',
149
149
  jsonSchema: {
150
- description: ( localize(6974, 'Contributes breakpoints.')),
150
+ description: ( localize(7110, 'Contributes breakpoints.')),
151
151
  type: 'array',
152
152
  defaultSnippets: [{ body: [{ language: '' }] }],
153
153
  items: {
@@ -156,12 +156,12 @@ const breakpointsExtPoint = ExtensionsRegistry.registerExtensionPoint({
156
156
  defaultSnippets: [{ body: { language: '' } }],
157
157
  properties: {
158
158
  language: {
159
- description: ( localize(6975, "Allow breakpoints for this language.")),
159
+ description: ( localize(7111, "Allow breakpoints for this language.")),
160
160
  type: 'string'
161
161
  },
162
162
  when: {
163
163
  description: ( localize(
164
- 6976,
164
+ 7112,
165
165
  "Condition which must be true to enable breakpoints in this language. Consider matching this to the debugger when clause as appropriate."
166
166
  )),
167
167
  type: 'string',
@@ -174,7 +174,7 @@ const breakpointsExtPoint = ExtensionsRegistry.registerExtensionPoint({
174
174
  const presentationSchema = {
175
175
  type: 'object',
176
176
  description: ( localize(
177
- 6977,
177
+ 7113,
178
178
  "Presentation options on how to show this configuration in the debug configuration dropdown and the command palette."
179
179
  )),
180
180
  properties: {
@@ -182,7 +182,7 @@ const presentationSchema = {
182
182
  type: 'boolean',
183
183
  default: false,
184
184
  description: ( localize(
185
- 6978,
185
+ 7114,
186
186
  "Controls if this configuration should be shown in the configuration dropdown and the command palette."
187
187
  ))
188
188
  },
@@ -190,7 +190,7 @@ const presentationSchema = {
190
190
  type: 'string',
191
191
  default: '',
192
192
  description: ( localize(
193
- 6979,
193
+ 7115,
194
194
  "Group that this configuration belongs to. Used for grouping and sorting in the configuration dropdown and the command palette."
195
195
  ))
196
196
  },
@@ -198,7 +198,7 @@ const presentationSchema = {
198
198
  type: 'number',
199
199
  default: 1,
200
200
  description: ( localize(
201
- 6980,
201
+ 7116,
202
202
  "Order of this configuration within a group. Used for grouping and sorting in the configuration dropdown and the command palette."
203
203
  ))
204
204
  }
@@ -213,7 +213,7 @@ const defaultCompound = { name: 'Compound', configurations: [] };
213
213
  const launchSchema = {
214
214
  id: launchSchemaId,
215
215
  type: 'object',
216
- title: ( localize(6981, "Launch")),
216
+ title: ( localize(7117, "Launch")),
217
217
  allowTrailingCommas: true,
218
218
  allowComments: true,
219
219
  required: [],
@@ -221,13 +221,13 @@ const launchSchema = {
221
221
  properties: {
222
222
  version: {
223
223
  type: 'string',
224
- description: ( localize(6982, "Version of this file format.")),
224
+ description: ( localize(7118, "Version of this file format.")),
225
225
  default: '0.2.0'
226
226
  },
227
227
  configurations: {
228
228
  type: 'array',
229
229
  description: ( localize(
230
- 6983,
230
+ 7119,
231
231
  "List of configurations. Add new configurations or edit existing ones by using IntelliSense."
232
232
  )),
233
233
  items: {
@@ -239,7 +239,7 @@ const launchSchema = {
239
239
  compounds: {
240
240
  type: 'array',
241
241
  description: ( localize(
242
- 6984,
242
+ 7120,
243
243
  "List of compounds. Each compound references multiple configurations which will get launched together."
244
244
  )),
245
245
  items: {
@@ -249,7 +249,7 @@ const launchSchema = {
249
249
  name: {
250
250
  type: 'string',
251
251
  description: ( localize(
252
- 6985,
252
+ 7121,
253
253
  "Name of compound. Appears in the launch configuration drop down menu."
254
254
  ))
255
255
  },
@@ -260,7 +260,7 @@ const launchSchema = {
260
260
  items: {
261
261
  oneOf: [{
262
262
  enum: [],
263
- description: ( localize(6986, "Please use unique configuration names."))
263
+ description: ( localize(7122, "Please use unique configuration names."))
264
264
  }, {
265
265
  type: 'object',
266
266
  required: ['name'],
@@ -268,19 +268,19 @@ const launchSchema = {
268
268
  name: {
269
269
  enum: [],
270
270
  description: ( localize(
271
- 6985,
271
+ 7121,
272
272
  "Name of compound. Appears in the launch configuration drop down menu."
273
273
  ))
274
274
  },
275
275
  folder: {
276
276
  enum: [],
277
- description: ( localize(6987, "Name of folder in which the compound is located."))
277
+ description: ( localize(7123, "Name of folder in which the compound is located."))
278
278
  }
279
279
  }
280
280
  }]
281
281
  },
282
282
  description: ( localize(
283
- 6988,
283
+ 7124,
284
284
  "Names of configurations that will be started as part of this compound."
285
285
  ))
286
286
  },
@@ -288,14 +288,14 @@ const launchSchema = {
288
288
  type: 'boolean',
289
289
  default: false,
290
290
  description: ( localize(
291
- 6989,
291
+ 7125,
292
292
  "Controls whether manually terminating one session will stop all of the compound sessions."
293
293
  ))
294
294
  },
295
295
  preLaunchTask: {
296
296
  type: 'string',
297
297
  default: '',
298
- description: ( localize(6990, "Task to run before any of the compound configurations start."))
298
+ description: ( localize(7126, "Task to run before any of the compound configurations start."))
299
299
  }
300
300
  },
301
301
  default: defaultCompound
@@ -321,8 +321,8 @@ class DebuggersDataRenderer extends Disposable {
321
321
  return { data: { headers: [], rows: [] }, dispose: () => { } };
322
322
  }
323
323
  const headers = [
324
- ( localize(6991, "Name")),
325
- ( localize(6992, "Type")),
324
+ ( localize(7127, "Name")),
325
+ ( localize(7128, "Type")),
326
326
  ];
327
327
  const rows = ( contrib.map(d => {
328
328
  return [
@@ -341,7 +341,7 @@ class DebuggersDataRenderer extends Disposable {
341
341
  }
342
342
  ( Registry.as(Extensions.ExtensionFeaturesRegistry)).registerExtensionFeature({
343
343
  id: 'debuggers',
344
- label: ( localize(6993, "Debuggers")),
344
+ label: ( localize(7129, "Debuggers")),
345
345
  access: {
346
346
  canToggle: false
347
347
  },
@@ -4,7 +4,7 @@ import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log
4
4
  import { IStorageService } from "@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service";
5
5
  import { IUriIdentityService } from "@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service";
6
6
  import { IDebugModel, IEvaluate, IExpression } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
7
- import { Breakpoint, DataBreakpoint, ExceptionBreakpoint, Expression, FunctionBreakpoint } from "@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel";
7
+ import { Breakpoint, DataBreakpoint, ExceptionBreakpoint, Expression, FunctionBreakpoint } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugModel";
8
8
  import { ITextFileService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles.service";
9
9
  export interface IChosenEnvironment {
10
10
  type: string;
@@ -7,7 +7,7 @@ import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log
7
7
  import { StorageScope, StorageTarget } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage';
8
8
  import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform/storage/common/storage.service';
9
9
  import { IUriIdentityService } from '@codingame/monaco-vscode-api/vscode/vs/platform/uriIdentity/common/uriIdentity.service';
10
- import { Breakpoint, FunctionBreakpoint, ExceptionBreakpoint, DataBreakpoint, Expression } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
10
+ import { Breakpoint, FunctionBreakpoint, ExceptionBreakpoint, DataBreakpoint, Expression } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugModel';
11
11
  import { ITextFileService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/textfile/common/textfiles.service';
12
12
  import { mapValues } from '@codingame/monaco-vscode-api/vscode/vs/base/common/objects';
13
13
  import { observableValue } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/observables/observableValue';
@@ -4,7 +4,7 @@ import { IContextKeyService } from "@codingame/monaco-vscode-api/vscode/vs/platf
4
4
  import { ExtensionIdentifier } from "@codingame/monaco-vscode-api/vscode/vs/platform/extensions/common/extensions";
5
5
  import { ILogService } from "@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service";
6
6
  import { MainThreadDebugVisualization, IDebugVisualization, IDebugVisualizationContext, IExpression, IDebugVisualizationTreeItem, IDebugSession } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug";
7
- import { VisualizedExpression } from "@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel";
7
+ import { VisualizedExpression } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugModel";
8
8
  import { IExtensionService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service";
9
9
  import { IDebugVisualizerService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugVisualizers.service";
10
10
  export interface VisualizerHandle {
@@ -7,8 +7,8 @@ import { IContextKeyService } from '@codingame/monaco-vscode-api/vscode/vs/platf
7
7
  import { ExtensionIdentifier } from '@codingame/monaco-vscode-api/vscode/vs/platform/extensions/common/extensions';
8
8
  import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log/common/log.service';
9
9
  import { CONTEXT_VARIABLE_NAME, CONTEXT_VARIABLE_VALUE, CONTEXT_VARIABLE_TYPE } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debug';
10
- import { getContextForVariable } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugContext';
11
- import { Variable, VisualizedExpression, Scope } from '@codingame/monaco-vscode-88aa9a78-75f5-5aaa-89e9-bbdd580b3b5c-common/vscode/vs/workbench/contrib/debug/common/debugModel';
10
+ import { getContextForVariable } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugContext';
11
+ import { Variable, VisualizedExpression, Scope } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/debug/common/debugModel';
12
12
  import { IExtensionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensions.service';
13
13
  import { ExtensionsRegistry } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/extensions/common/extensionsRegistry';
14
14