@theia/debug 1.67.0-next.56 → 1.67.0-next.86
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/lib/browser/breakpoint/breakpoint-manager.d.ts +91 -0
- package/lib/browser/breakpoint/breakpoint-manager.d.ts.map +1 -0
- package/lib/browser/breakpoint/breakpoint-manager.js +367 -0
- package/lib/browser/breakpoint/breakpoint-manager.js.map +1 -0
- package/lib/browser/breakpoint/breakpoint-marker.d.ts +65 -0
- package/lib/browser/breakpoint/breakpoint-marker.d.ts.map +1 -0
- package/lib/browser/breakpoint/breakpoint-marker.js +102 -0
- package/lib/browser/breakpoint/breakpoint-marker.js.map +1 -0
- package/lib/browser/breakpoint/debug-data-breakpoint-actions.d.ts +17 -0
- package/lib/browser/breakpoint/debug-data-breakpoint-actions.d.ts.map +1 -0
- package/lib/browser/breakpoint/debug-data-breakpoint-actions.js +166 -0
- package/lib/browser/breakpoint/debug-data-breakpoint-actions.js.map +1 -0
- package/lib/browser/console/debug-console-contribution.d.ts +45 -0
- package/lib/browser/console/debug-console-contribution.d.ts.map +1 -0
- package/lib/browser/console/debug-console-contribution.js +233 -0
- package/lib/browser/console/debug-console-contribution.js.map +1 -0
- package/lib/browser/console/debug-console-items.d.ts +108 -0
- package/lib/browser/console/debug-console-items.d.ts.map +1 -0
- package/lib/browser/console/debug-console-items.js +407 -0
- package/lib/browser/console/debug-console-items.js.map +1 -0
- package/lib/browser/console/debug-console-session.d.ts +32 -0
- package/lib/browser/console/debug-console-session.d.ts.map +1 -0
- package/lib/browser/console/debug-console-session.js +193 -0
- package/lib/browser/console/debug-console-session.js.map +1 -0
- package/lib/browser/debug-call-stack-item-type-key.d.ts +4 -0
- package/lib/browser/debug-call-stack-item-type-key.d.ts.map +1 -0
- package/lib/browser/debug-call-stack-item-type-key.js +20 -0
- package/lib/browser/debug-call-stack-item-type-key.js.map +1 -0
- package/lib/browser/debug-configuration-manager.d.ts +103 -0
- package/lib/browser/debug-configuration-manager.d.ts.map +1 -0
- package/lib/browser/debug-configuration-manager.js +545 -0
- package/lib/browser/debug-configuration-manager.js.map +1 -0
- package/lib/browser/debug-configuration-model.d.ts +30 -0
- package/lib/browser/debug-configuration-model.d.ts.map +1 -0
- package/lib/browser/debug-configuration-model.js +80 -0
- package/lib/browser/debug-configuration-model.js.map +1 -0
- package/lib/browser/debug-contribution.d.ts +23 -0
- package/lib/browser/debug-contribution.d.ts.map +1 -0
- package/lib/browser/debug-contribution.js +20 -0
- package/lib/browser/debug-contribution.js.map +1 -0
- package/lib/browser/debug-frontend-application-contribution.d.ts +252 -0
- package/lib/browser/debug-frontend-application-contribution.d.ts.map +1 -0
- package/lib/browser/debug-frontend-application-contribution.js +1696 -0
- package/lib/browser/debug-frontend-application-contribution.js.map +1 -0
- package/lib/browser/debug-frontend-module.d.ts +5 -0
- package/lib/browser/debug-frontend-module.d.ts.map +1 -0
- package/lib/browser/debug-frontend-module.js +112 -0
- package/lib/browser/debug-frontend-module.js.map +1 -0
- package/lib/browser/debug-package.spec.d.ts +1 -0
- package/lib/browser/debug-package.spec.d.ts.map +1 -0
- package/lib/browser/debug-package.spec.js +19 -0
- package/lib/browser/debug-package.spec.js.map +1 -0
- package/lib/browser/debug-prefix-configuration.d.ts +52 -0
- package/lib/browser/debug-prefix-configuration.d.ts.map +1 -0
- package/lib/browser/debug-prefix-configuration.js +202 -0
- package/lib/browser/debug-prefix-configuration.js.map +1 -0
- package/lib/browser/debug-resource.d.ts +15 -0
- package/lib/browser/debug-resource.d.ts.map +1 -0
- package/lib/browser/debug-resource.js +58 -0
- package/lib/browser/debug-resource.js.map +1 -0
- package/lib/browser/debug-schema-updater.d.ts +14 -0
- package/lib/browser/debug-schema-updater.d.ts.map +1 -0
- package/lib/browser/debug-schema-updater.js +161 -0
- package/lib/browser/debug-schema-updater.js.map +1 -0
- package/lib/browser/debug-session-configuration-label-provider.d.ts +11 -0
- package/lib/browser/debug-session-configuration-label-provider.d.ts.map +1 -0
- package/lib/browser/debug-session-configuration-label-provider.js +48 -0
- package/lib/browser/debug-session-configuration-label-provider.js.map +1 -0
- package/lib/browser/debug-session-configuration-label-provider.spec.d.ts +2 -0
- package/lib/browser/debug-session-configuration-label-provider.spec.d.ts.map +1 -0
- package/lib/browser/debug-session-configuration-label-provider.spec.js +84 -0
- package/lib/browser/debug-session-configuration-label-provider.spec.js.map +1 -0
- package/lib/browser/debug-session-connection.d.ts +111 -0
- package/lib/browser/debug-session-connection.d.ts.map +1 -0
- package/lib/browser/debug-session-connection.js +259 -0
- package/lib/browser/debug-session-connection.js.map +1 -0
- package/lib/browser/debug-session-contribution.d.ts +77 -0
- package/lib/browser/debug-session-contribution.d.ts.map +1 -0
- package/lib/browser/debug-session-contribution.js +143 -0
- package/lib/browser/debug-session-contribution.js.map +1 -0
- package/lib/browser/debug-session-manager.d.ts +147 -0
- package/lib/browser/debug-session-manager.d.ts.map +1 -0
- package/lib/browser/debug-session-manager.js +640 -0
- package/lib/browser/debug-session-manager.js.map +1 -0
- package/lib/browser/debug-session-options.d.ts +56 -0
- package/lib/browser/debug-session-options.d.ts.map +1 -0
- package/lib/browser/debug-session-options.js +92 -0
- package/lib/browser/debug-session-options.js.map +1 -0
- package/lib/browser/debug-session.d.ts +200 -0
- package/lib/browser/debug-session.d.ts.map +1 -0
- package/lib/browser/debug-session.js +955 -0
- package/lib/browser/debug-session.js.map +1 -0
- package/lib/browser/debug-tab-bar-decorator.d.ts +17 -0
- package/lib/browser/debug-tab-bar-decorator.d.ts.map +1 -0
- package/lib/browser/debug-tab-bar-decorator.js +63 -0
- package/lib/browser/debug-tab-bar-decorator.js.map +1 -0
- package/lib/browser/debug-watch-manager.d.ts +22 -0
- package/lib/browser/debug-watch-manager.d.ts.map +1 -0
- package/lib/browser/debug-watch-manager.js +86 -0
- package/lib/browser/debug-watch-manager.js.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-accessibility-provider.d.ts +7 -0
- package/lib/browser/disassembly-view/disassembly-view-accessibility-provider.d.ts.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-accessibility-provider.js +39 -0
- package/lib/browser/disassembly-view/disassembly-view-accessibility-provider.js.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-breakpoint-renderer.d.ts +20 -0
- package/lib/browser/disassembly-view/disassembly-view-breakpoint-renderer.d.ts.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-breakpoint-renderer.js +111 -0
- package/lib/browser/disassembly-view/disassembly-view-breakpoint-renderer.js.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-contribution.d.ts +25 -0
- package/lib/browser/disassembly-view/disassembly-view-contribution.d.ts.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-contribution.js +124 -0
- package/lib/browser/disassembly-view/disassembly-view-contribution.js.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-instruction-renderer.d.ts +39 -0
- package/lib/browser/disassembly-view/disassembly-view-instruction-renderer.d.ts.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-instruction-renderer.js +213 -0
- package/lib/browser/disassembly-view/disassembly-view-instruction-renderer.js.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-table-delegate.d.ts +16 -0
- package/lib/browser/disassembly-view/disassembly-view-table-delegate.d.ts.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-table-delegate.js +39 -0
- package/lib/browser/disassembly-view/disassembly-view-table-delegate.js.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-utilities.d.ts +38 -0
- package/lib/browser/disassembly-view/disassembly-view-utilities.d.ts.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-utilities.js +18 -0
- package/lib/browser/disassembly-view/disassembly-view-utilities.js.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-widget.d.ts +61 -0
- package/lib/browser/disassembly-view/disassembly-view-widget.d.ts.map +1 -0
- package/lib/browser/disassembly-view/disassembly-view-widget.js +446 -0
- package/lib/browser/disassembly-view/disassembly-view-widget.js.map +1 -0
- package/lib/browser/editor/debug-breakpoint-widget.d.ts +58 -0
- package/lib/browser/editor/debug-breakpoint-widget.d.ts.map +1 -0
- package/lib/browser/editor/debug-breakpoint-widget.js +270 -0
- package/lib/browser/editor/debug-breakpoint-widget.js.map +1 -0
- package/lib/browser/editor/debug-editor-model.d.ts +87 -0
- package/lib/browser/editor/debug-editor-model.d.ts.map +1 -0
- package/lib/browser/editor/debug-editor-model.js +499 -0
- package/lib/browser/editor/debug-editor-model.js.map +1 -0
- package/lib/browser/editor/debug-editor-service.d.ts +38 -0
- package/lib/browser/editor/debug-editor-service.d.ts.map +1 -0
- package/lib/browser/editor/debug-editor-service.js +183 -0
- package/lib/browser/editor/debug-editor-service.js.map +1 -0
- package/lib/browser/editor/debug-editor.d.ts +4 -0
- package/lib/browser/editor/debug-editor.d.ts.map +1 -0
- package/lib/browser/editor/debug-editor.js +20 -0
- package/lib/browser/editor/debug-editor.js.map +1 -0
- package/lib/browser/editor/debug-exception-widget.d.ts +30 -0
- package/lib/browser/editor/debug-exception-widget.d.ts.map +1 -0
- package/lib/browser/editor/debug-exception-widget.js +107 -0
- package/lib/browser/editor/debug-exception-widget.js.map +1 -0
- package/lib/browser/editor/debug-expression-provider.d.ts +17 -0
- package/lib/browser/editor/debug-expression-provider.d.ts.map +1 -0
- package/lib/browser/editor/debug-expression-provider.js +107 -0
- package/lib/browser/editor/debug-expression-provider.js.map +1 -0
- package/lib/browser/editor/debug-hover-source.d.ts +20 -0
- package/lib/browser/editor/debug-hover-source.d.ts.map +1 -0
- package/lib/browser/editor/debug-hover-source.js +119 -0
- package/lib/browser/editor/debug-hover-source.js.map +1 -0
- package/lib/browser/editor/debug-hover-widget.d.ts +61 -0
- package/lib/browser/editor/debug-hover-widget.d.ts.map +1 -0
- package/lib/browser/editor/debug-hover-widget.js +271 -0
- package/lib/browser/editor/debug-hover-widget.js.map +1 -0
- package/lib/browser/editor/debug-inline-value-decorator.d.ts +20 -0
- package/lib/browser/editor/debug-inline-value-decorator.d.ts.map +1 -0
- package/lib/browser/editor/debug-inline-value-decorator.js +326 -0
- package/lib/browser/editor/debug-inline-value-decorator.js.map +1 -0
- package/lib/browser/model/debug-breakpoint.d.ts +48 -0
- package/lib/browser/model/debug-breakpoint.d.ts.map +1 -0
- package/lib/browser/model/debug-breakpoint.js +111 -0
- package/lib/browser/model/debug-breakpoint.js.map +1 -0
- package/lib/browser/model/debug-data-breakpoint.d.ts +16 -0
- package/lib/browser/model/debug-data-breakpoint.d.ts.map +1 -0
- package/lib/browser/model/debug-data-breakpoint.js +75 -0
- package/lib/browser/model/debug-data-breakpoint.js.map +1 -0
- package/lib/browser/model/debug-function-breakpoint.d.ts +19 -0
- package/lib/browser/model/debug-function-breakpoint.d.ts.map +1 -0
- package/lib/browser/model/debug-function-breakpoint.js +93 -0
- package/lib/browser/model/debug-function-breakpoint.js.map +1 -0
- package/lib/browser/model/debug-instruction-breakpoint.d.ts +15 -0
- package/lib/browser/model/debug-instruction-breakpoint.d.ts.map +1 -0
- package/lib/browser/model/debug-instruction-breakpoint.js +66 -0
- package/lib/browser/model/debug-instruction-breakpoint.js.map +1 -0
- package/lib/browser/model/debug-source-breakpoint.d.ts +39 -0
- package/lib/browser/model/debug-source-breakpoint.d.ts.map +1 -0
- package/lib/browser/model/debug-source-breakpoint.js +219 -0
- package/lib/browser/model/debug-source-breakpoint.js.map +1 -0
- package/lib/browser/model/debug-source.d.ts +25 -0
- package/lib/browser/model/debug-source.d.ts.map +1 -0
- package/lib/browser/model/debug-source.js +81 -0
- package/lib/browser/model/debug-source.js.map +1 -0
- package/lib/browser/model/debug-stack-frame.d.ts +45 -0
- package/lib/browser/model/debug-stack-frame.d.ts.map +1 -0
- package/lib/browser/model/debug-stack-frame.js +165 -0
- package/lib/browser/model/debug-stack-frame.js.map +1 -0
- package/lib/browser/model/debug-thread.d.ts +68 -0
- package/lib/browser/model/debug-thread.d.ts.map +1 -0
- package/lib/browser/model/debug-thread.js +266 -0
- package/lib/browser/model/debug-thread.js.map +1 -0
- package/lib/browser/view/debug-action.d.ts +18 -0
- package/lib/browser/view/debug-action.d.ts.map +1 -0
- package/lib/browser/view/debug-action.js +44 -0
- package/lib/browser/view/debug-action.js.map +1 -0
- package/lib/browser/view/debug-breakpoints-source.d.ts +10 -0
- package/lib/browser/view/debug-breakpoints-source.d.ts.map +1 -0
- package/lib/browser/view/debug-breakpoints-source.js +58 -0
- package/lib/browser/view/debug-breakpoints-source.js.map +1 -0
- package/lib/browser/view/debug-breakpoints-widget.d.ts +23 -0
- package/lib/browser/view/debug-breakpoints-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-breakpoints-widget.js +81 -0
- package/lib/browser/view/debug-breakpoints-widget.js.map +1 -0
- package/lib/browser/view/debug-configuration-select.d.ts +67 -0
- package/lib/browser/view/debug-configuration-select.d.ts.map +1 -0
- package/lib/browser/view/debug-configuration-select.js +212 -0
- package/lib/browser/view/debug-configuration-select.js.map +1 -0
- package/lib/browser/view/debug-configuration-widget.d.ts +33 -0
- package/lib/browser/view/debug-configuration-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-configuration-widget.js +137 -0
- package/lib/browser/view/debug-configuration-widget.js.map +1 -0
- package/lib/browser/view/debug-exception-breakpoint.d.ts +15 -0
- package/lib/browser/view/debug-exception-breakpoint.d.ts.map +1 -0
- package/lib/browser/view/debug-exception-breakpoint.js +62 -0
- package/lib/browser/view/debug-exception-breakpoint.js.map +1 -0
- package/lib/browser/view/debug-session-widget.d.ts +29 -0
- package/lib/browser/view/debug-session-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-session-widget.js +127 -0
- package/lib/browser/view/debug-session-widget.js.map +1 -0
- package/lib/browser/view/debug-stack-frames-source.d.ts +18 -0
- package/lib/browser/view/debug-stack-frames-source.d.ts.map +1 -0
- package/lib/browser/view/debug-stack-frames-source.js +83 -0
- package/lib/browser/view/debug-stack-frames-source.js.map +1 -0
- package/lib/browser/view/debug-stack-frames-widget.d.ts +25 -0
- package/lib/browser/view/debug-stack-frames-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-stack-frames-widget.js +152 -0
- package/lib/browser/view/debug-stack-frames-widget.js.map +1 -0
- package/lib/browser/view/debug-threads-source.d.ts +9 -0
- package/lib/browser/view/debug-threads-source.d.ts.map +1 -0
- package/lib/browser/view/debug-threads-source.js +56 -0
- package/lib/browser/view/debug-threads-source.js.map +1 -0
- package/lib/browser/view/debug-threads-widget.d.ts +27 -0
- package/lib/browser/view/debug-threads-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-threads-widget.js +139 -0
- package/lib/browser/view/debug-threads-widget.js.map +1 -0
- package/lib/browser/view/debug-toolbar-widget.d.ts +34 -0
- package/lib/browser/view/debug-toolbar-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-toolbar-widget.js +139 -0
- package/lib/browser/view/debug-toolbar-widget.js.map +1 -0
- package/lib/browser/view/debug-variables-source.d.ts +10 -0
- package/lib/browser/view/debug-variables-source.d.ts.map +1 -0
- package/lib/browser/view/debug-variables-source.js +54 -0
- package/lib/browser/view/debug-variables-source.js.map +1 -0
- package/lib/browser/view/debug-variables-widget.d.ts +43 -0
- package/lib/browser/view/debug-variables-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-variables-widget.js +207 -0
- package/lib/browser/view/debug-variables-widget.js.map +1 -0
- package/lib/browser/view/debug-view-model.d.ts +59 -0
- package/lib/browser/view/debug-view-model.d.ts.map +1 -0
- package/lib/browser/view/debug-view-model.js +225 -0
- package/lib/browser/view/debug-view-model.js.map +1 -0
- package/lib/browser/view/debug-watch-expression.d.ts +33 -0
- package/lib/browser/view/debug-watch-expression.d.ts.map +1 -0
- package/lib/browser/view/debug-watch-expression.js +92 -0
- package/lib/browser/view/debug-watch-expression.js.map +1 -0
- package/lib/browser/view/debug-watch-source.d.ts +10 -0
- package/lib/browser/view/debug-watch-source.d.ts.map +1 -0
- package/lib/browser/view/debug-watch-source.js +52 -0
- package/lib/browser/view/debug-watch-source.js.map +1 -0
- package/lib/browser/view/debug-watch-widget.d.ts +17 -0
- package/lib/browser/view/debug-watch-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-watch-widget.js +71 -0
- package/lib/browser/view/debug-watch-widget.js.map +1 -0
- package/lib/browser/view/debug-widget.d.ts +24 -0
- package/lib/browser/view/debug-widget.d.ts.map +1 -0
- package/lib/browser/view/debug-widget.js +101 -0
- package/lib/browser/view/debug-widget.js.map +1 -0
- package/lib/common/debug-adapter-contribution-registry.d.ts +60 -0
- package/lib/common/debug-adapter-contribution-registry.d.ts.map +1 -0
- package/lib/common/debug-adapter-contribution-registry.js +205 -0
- package/lib/common/debug-adapter-contribution-registry.js.map +1 -0
- package/lib/common/debug-adapter-session.d.ts +19 -0
- package/lib/common/debug-adapter-session.d.ts.map +1 -0
- package/lib/common/debug-adapter-session.js +79 -0
- package/lib/common/debug-adapter-session.js.map +1 -0
- package/lib/common/debug-common.d.ts +2 -0
- package/lib/common/debug-common.d.ts.map +1 -0
- package/lib/common/debug-common.js +21 -0
- package/lib/common/debug-common.js.map +1 -0
- package/lib/common/debug-compound.d.ts +15 -0
- package/lib/common/debug-compound.d.ts.map +1 -0
- package/lib/common/debug-compound.js +28 -0
- package/lib/common/debug-compound.js.map +1 -0
- package/lib/common/debug-configuration.d.ts +77 -0
- package/lib/common/debug-configuration.d.ts.map +1 -0
- package/lib/common/debug-configuration.js +32 -0
- package/lib/common/debug-configuration.js.map +1 -0
- package/lib/common/debug-model.d.ts +153 -0
- package/lib/common/debug-model.d.ts.map +1 -0
- package/lib/common/debug-model.js +36 -0
- package/lib/common/debug-model.js.map +1 -0
- package/lib/common/debug-preferences.d.ts +19 -0
- package/lib/common/debug-preferences.d.ts.map +1 -0
- package/lib/common/debug-preferences.js +99 -0
- package/lib/common/debug-preferences.js.map +1 -0
- package/lib/common/debug-service.d.ts +124 -0
- package/lib/common/debug-service.d.ts.map +1 -0
- package/lib/common/debug-service.js +67 -0
- package/lib/common/debug-service.js.map +1 -0
- package/lib/common/debug-uri-utils.d.ts +24 -0
- package/lib/common/debug-uri-utils.d.ts.map +1 -0
- package/lib/common/debug-uri-utils.js +27 -0
- package/lib/common/debug-uri-utils.js.map +1 -0
- package/lib/common/inline-debug-adapter.d.ts +19 -0
- package/lib/common/inline-debug-adapter.d.ts.map +1 -0
- package/lib/common/inline-debug-adapter.js +45 -0
- package/lib/common/inline-debug-adapter.js.map +1 -0
- package/lib/common/launch-preferences.d.ts +6 -0
- package/lib/common/launch-preferences.d.ts.map +1 -0
- package/lib/common/launch-preferences.js +37 -0
- package/lib/common/launch-preferences.js.map +1 -0
- package/lib/node/debug-adapter-factory.d.ts +20 -0
- package/lib/node/debug-adapter-factory.d.ts.map +1 -0
- package/lib/node/debug-adapter-factory.js +89 -0
- package/lib/node/debug-adapter-factory.js.map +1 -0
- package/lib/node/debug-adapter-session-manager.d.ts +38 -0
- package/lib/node/debug-adapter-session-manager.d.ts.map +1 -0
- package/lib/node/debug-adapter-session-manager.js +104 -0
- package/lib/node/debug-adapter-session-manager.js.map +1 -0
- package/lib/node/debug-backend-module.d.ts +4 -0
- package/lib/node/debug-backend-module.d.ts.map +1 -0
- package/lib/node/debug-backend-module.js +45 -0
- package/lib/node/debug-backend-module.js.map +1 -0
- package/lib/node/debug-service-impl.d.ts +31 -0
- package/lib/node/debug-service-impl.d.ts.map +1 -0
- package/lib/node/debug-service-impl.js +117 -0
- package/lib/node/debug-service-impl.js.map +1 -0
- package/lib/node/stream-debug-adapter.d.ts +41 -0
- package/lib/node/stream-debug-adapter.d.ts.map +1 -0
- package/lib/node/stream-debug-adapter.js +113 -0
- package/lib/node/stream-debug-adapter.js.map +1 -0
- package/package.json +15 -15
- package/src/browser/console/debug-console-items.tsx +90 -21
- package/src/browser/console/debug-console-session.ts +1 -0
- package/src/browser/debug-session-contribution.ts +3 -1
- package/src/browser/debug-session-manager.ts +10 -0
- package/src/browser/debug-session.tsx +13 -1
- package/src/browser/editor/debug-hover-source.tsx +6 -2
- package/src/browser/editor/debug-inline-value-decorator.ts +1 -1
- package/src/browser/model/debug-stack-frame.tsx +13 -6
- package/src/browser/model/debug-thread.tsx +14 -10
- package/src/browser/style/index.css +17 -0
- package/src/browser/view/debug-variables-source.ts +1 -0
- package/src/browser/view/debug-variables-widget.ts +59 -0
- package/src/browser/view/debug-view-model.ts +13 -0
- package/src/browser/view/debug-watch-expression.tsx +5 -6
- package/src/browser/view/debug-watch-source.ts +1 -0
- package/src/common/debug-preferences.ts +12 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 Red Hat, Inc. and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.DebugResourceResolver = exports.DebugResource = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
20
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
21
|
+
const debug_session_manager_1 = require("./debug-session-manager");
|
|
22
|
+
const debug_source_1 = require("./model/debug-source");
|
|
23
|
+
class DebugResource {
|
|
24
|
+
constructor(uri, manager) {
|
|
25
|
+
this.uri = uri;
|
|
26
|
+
this.manager = manager;
|
|
27
|
+
}
|
|
28
|
+
dispose() { }
|
|
29
|
+
async readContents() {
|
|
30
|
+
const { currentSession } = this.manager;
|
|
31
|
+
if (!currentSession) {
|
|
32
|
+
throw new Error(`There is no active debug session to load content '${this.uri}'`);
|
|
33
|
+
}
|
|
34
|
+
const source = await currentSession.toSource(this.uri);
|
|
35
|
+
if (!source) {
|
|
36
|
+
throw new Error(`There is no source for '${this.uri}'`);
|
|
37
|
+
}
|
|
38
|
+
return source.load();
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
exports.DebugResource = DebugResource;
|
|
42
|
+
let DebugResourceResolver = class DebugResourceResolver {
|
|
43
|
+
resolve(uri) {
|
|
44
|
+
if (uri.scheme !== debug_source_1.DebugSource.SCHEME) {
|
|
45
|
+
throw new Error('The given URI is not a valid debug URI: ' + uri);
|
|
46
|
+
}
|
|
47
|
+
return new DebugResource(uri, this.manager);
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
exports.DebugResourceResolver = DebugResourceResolver;
|
|
51
|
+
tslib_1.__decorate([
|
|
52
|
+
(0, inversify_1.inject)(debug_session_manager_1.DebugSessionManager),
|
|
53
|
+
tslib_1.__metadata("design:type", debug_session_manager_1.DebugSessionManager)
|
|
54
|
+
], DebugResourceResolver.prototype, "manager", void 0);
|
|
55
|
+
exports.DebugResourceResolver = DebugResourceResolver = tslib_1.__decorate([
|
|
56
|
+
(0, inversify_1.injectable)()
|
|
57
|
+
], DebugResourceResolver);
|
|
58
|
+
//# sourceMappingURL=debug-resource.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-resource.js","sourceRoot":"","sources":["../../src/browser/debug-resource.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,+CAA+C;AAC/C,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,4DAAkE;AAGlE,mEAA8D;AAC9D,uDAAmD;AAEnD,MAAa,aAAa;IAEtB,YACW,GAAQ,EACI,OAA4B;QADxC,QAAG,GAAH,GAAG,CAAK;QACI,YAAO,GAAP,OAAO,CAAqB;IAC/C,CAAC;IAEL,OAAO,KAAW,CAAC;IAEnB,KAAK,CAAC,YAAY;QACd,MAAM,EAAE,cAAc,EAAE,GAAG,IAAI,CAAC,OAAO,CAAC;QACxC,IAAI,CAAC,cAAc,EAAE,CAAC;YAClB,MAAM,IAAI,KAAK,CAAC,qDAAqD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACtF,CAAC;QACD,MAAM,MAAM,GAAG,MAAM,cAAc,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QACvD,IAAI,CAAC,MAAM,EAAE,CAAC;YACV,MAAM,IAAI,KAAK,CAAC,2BAA2B,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QAC5D,CAAC;QACD,OAAO,MAAM,CAAC,IAAI,EAAE,CAAC;IACzB,CAAC;CAEJ;AArBD,sCAqBC;AAGM,IAAM,qBAAqB,GAA3B,MAAM,qBAAqB;IAK9B,OAAO,CAAC,GAAQ;QACZ,IAAI,GAAG,CAAC,MAAM,KAAK,0BAAW,CAAC,MAAM,EAAE,CAAC;YACpC,MAAM,IAAI,KAAK,CAAC,0CAA0C,GAAG,GAAG,CAAC,CAAC;QACtE,CAAC;QACD,OAAO,IAAI,aAAa,CAAC,GAAG,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC;IAChD,CAAC;CAEJ,CAAA;AAZY,sDAAqB;AAGX;IADlB,IAAA,kBAAM,EAAC,2CAAmB,CAAC;sCACA,2CAAmB;sDAAC;gCAHvC,qBAAqB;IADjC,IAAA,sBAAU,GAAE;GACA,qBAAqB,CAYjC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { JsonSchemaRegisterContext, JsonSchemaContribution, JsonSchemaDataStore } from '@theia/core/lib/browser/json-schema-store';
|
|
2
|
+
import URI from '@theia/core/lib/common/uri';
|
|
3
|
+
import { DebugService } from '../common/debug-service';
|
|
4
|
+
import { WorkspaceService } from '@theia/workspace/lib/browser';
|
|
5
|
+
export declare class DebugSchemaUpdater implements JsonSchemaContribution {
|
|
6
|
+
protected readonly uri: URI;
|
|
7
|
+
protected readonly jsonStorage: JsonSchemaDataStore;
|
|
8
|
+
protected readonly workspaceService: WorkspaceService;
|
|
9
|
+
protected readonly debug: DebugService;
|
|
10
|
+
protected init(): void;
|
|
11
|
+
registerSchemas(context: JsonSchemaRegisterContext): void;
|
|
12
|
+
update(): Promise<void>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=debug-schema-updater.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-schema-updater.d.ts","sourceRoot":"","sources":["../../src/browser/debug-schema-updater.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,yBAAyB,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;AAGnI,OAAO,GAAG,MAAM,4BAA4B,CAAC;AAC7C,OAAO,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAC;AAGvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAIhE,qBACa,kBAAmB,YAAW,sBAAsB;IAE7D,SAAS,CAAC,QAAQ,CAAC,GAAG,MAA2B;IAEpB,SAAS,CAAC,QAAQ,CAAC,WAAW,EAAE,mBAAmB,CAAC;IACvD,SAAS,CAAC,QAAQ,CAAC,gBAAgB,EAAE,gBAAgB,CAAC;IAC1D,SAAS,CAAC,QAAQ,CAAC,KAAK,EAAE,YAAY,CAAC;IAG7D,SAAS,CAAC,IAAI,IAAI,IAAI;IAItB,eAAe,CAAC,OAAO,EAAE,yBAAyB,GAAG,IAAI;IAQnD,MAAM,IAAI,OAAO,CAAC,IAAI,CAAC;CAmBhC"}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2018 TypeFox and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.DebugSchemaUpdater = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
20
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
21
|
+
const json_schema_store_1 = require("@theia/core/lib/browser/json-schema-store");
|
|
22
|
+
const common_1 = require("@theia/core/lib/common");
|
|
23
|
+
const uri_1 = require("@theia/core/lib/common/uri");
|
|
24
|
+
const debug_service_1 = require("../common/debug-service");
|
|
25
|
+
const debug_preferences_1 = require("../common/debug-preferences");
|
|
26
|
+
const variable_input_schema_1 = require("@theia/variable-resolver/lib/browser/variable-input-schema");
|
|
27
|
+
const browser_1 = require("@theia/workspace/lib/browser");
|
|
28
|
+
const debug_compound_1 = require("../common/debug-compound");
|
|
29
|
+
const launch_preferences_1 = require("../common/launch-preferences");
|
|
30
|
+
let DebugSchemaUpdater = class DebugSchemaUpdater {
|
|
31
|
+
constructor() {
|
|
32
|
+
this.uri = new uri_1.default(launch_preferences_1.launchSchemaId);
|
|
33
|
+
}
|
|
34
|
+
init() {
|
|
35
|
+
this.jsonStorage.setSchema(this.uri, '');
|
|
36
|
+
}
|
|
37
|
+
registerSchemas(context) {
|
|
38
|
+
context.registerSchema({
|
|
39
|
+
fileMatch: ['launch.json'],
|
|
40
|
+
url: this.uri.toString()
|
|
41
|
+
});
|
|
42
|
+
this.workspaceService.updateSchema('launch', { $ref: this.uri.toString() });
|
|
43
|
+
}
|
|
44
|
+
async update() {
|
|
45
|
+
const types = await this.debug.debugTypes();
|
|
46
|
+
const schema = { ...(0, common_1.deepClone)(launchSchema) };
|
|
47
|
+
const items = schema.properties['configurations'].items;
|
|
48
|
+
const attributePromises = types.map(type => this.debug.getSchemaAttributes(type));
|
|
49
|
+
for (const attributes of await Promise.all(attributePromises)) {
|
|
50
|
+
for (const attribute of attributes) {
|
|
51
|
+
const properties = {};
|
|
52
|
+
for (const key of ['debugViewLocation', 'openDebug', 'internalConsoleOptions']) {
|
|
53
|
+
properties[key] = debug_preferences_1.debugPreferencesSchema.properties[`debug.${key}`];
|
|
54
|
+
}
|
|
55
|
+
attribute.properties = Object.assign(properties, attribute.properties);
|
|
56
|
+
items.oneOf.push(attribute);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
items.defaultSnippets.push(...await this.debug.getConfigurationSnippets());
|
|
60
|
+
this.jsonStorage.setSchema(this.uri, schema);
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
exports.DebugSchemaUpdater = DebugSchemaUpdater;
|
|
64
|
+
tslib_1.__decorate([
|
|
65
|
+
(0, inversify_1.inject)(json_schema_store_1.JsonSchemaDataStore),
|
|
66
|
+
tslib_1.__metadata("design:type", json_schema_store_1.JsonSchemaDataStore)
|
|
67
|
+
], DebugSchemaUpdater.prototype, "jsonStorage", void 0);
|
|
68
|
+
tslib_1.__decorate([
|
|
69
|
+
(0, inversify_1.inject)(browser_1.WorkspaceService),
|
|
70
|
+
tslib_1.__metadata("design:type", browser_1.WorkspaceService)
|
|
71
|
+
], DebugSchemaUpdater.prototype, "workspaceService", void 0);
|
|
72
|
+
tslib_1.__decorate([
|
|
73
|
+
(0, inversify_1.inject)(debug_service_1.DebugService),
|
|
74
|
+
tslib_1.__metadata("design:type", Object)
|
|
75
|
+
], DebugSchemaUpdater.prototype, "debug", void 0);
|
|
76
|
+
tslib_1.__decorate([
|
|
77
|
+
(0, inversify_1.postConstruct)(),
|
|
78
|
+
tslib_1.__metadata("design:type", Function),
|
|
79
|
+
tslib_1.__metadata("design:paramtypes", []),
|
|
80
|
+
tslib_1.__metadata("design:returntype", void 0)
|
|
81
|
+
], DebugSchemaUpdater.prototype, "init", null);
|
|
82
|
+
exports.DebugSchemaUpdater = DebugSchemaUpdater = tslib_1.__decorate([
|
|
83
|
+
(0, inversify_1.injectable)()
|
|
84
|
+
], DebugSchemaUpdater);
|
|
85
|
+
const launchSchema = {
|
|
86
|
+
$id: launch_preferences_1.launchSchemaId,
|
|
87
|
+
type: 'object',
|
|
88
|
+
title: common_1.nls.localizeByDefault('Launch'),
|
|
89
|
+
required: [],
|
|
90
|
+
default: { version: '0.2.0', configurations: [], compounds: [] },
|
|
91
|
+
properties: {
|
|
92
|
+
version: {
|
|
93
|
+
type: 'string',
|
|
94
|
+
description: common_1.nls.localizeByDefault('Version of this file format.'),
|
|
95
|
+
default: '0.2.0'
|
|
96
|
+
},
|
|
97
|
+
configurations: {
|
|
98
|
+
type: 'array',
|
|
99
|
+
description: common_1.nls.localizeByDefault('List of configurations. Add new configurations or edit existing ones by using IntelliSense.'),
|
|
100
|
+
items: {
|
|
101
|
+
defaultSnippets: [],
|
|
102
|
+
'type': 'object',
|
|
103
|
+
oneOf: []
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
compounds: {
|
|
107
|
+
type: 'array',
|
|
108
|
+
description: common_1.nls.localizeByDefault('List of compounds. Each compound references multiple configurations which will get launched together.'),
|
|
109
|
+
items: {
|
|
110
|
+
type: 'object',
|
|
111
|
+
required: ['name', 'configurations'],
|
|
112
|
+
properties: {
|
|
113
|
+
name: {
|
|
114
|
+
type: 'string',
|
|
115
|
+
description: common_1.nls.localizeByDefault('Name of compound. Appears in the launch configuration drop down menu.')
|
|
116
|
+
},
|
|
117
|
+
configurations: {
|
|
118
|
+
type: 'array',
|
|
119
|
+
default: [],
|
|
120
|
+
items: {
|
|
121
|
+
oneOf: [{
|
|
122
|
+
type: 'string',
|
|
123
|
+
description: common_1.nls.localizeByDefault('Please use unique configuration names.')
|
|
124
|
+
}, {
|
|
125
|
+
type: 'object',
|
|
126
|
+
required: ['name'],
|
|
127
|
+
properties: {
|
|
128
|
+
name: {
|
|
129
|
+
enum: [],
|
|
130
|
+
description: common_1.nls.localizeByDefault('Name of compound. Appears in the launch configuration drop down menu.')
|
|
131
|
+
},
|
|
132
|
+
folder: {
|
|
133
|
+
enum: [],
|
|
134
|
+
description: common_1.nls.localizeByDefault('Name of folder in which the compound is located.')
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}]
|
|
138
|
+
},
|
|
139
|
+
description: common_1.nls.localizeByDefault('Names of configurations that will be started as part of this compound.')
|
|
140
|
+
},
|
|
141
|
+
stopAll: {
|
|
142
|
+
type: 'boolean',
|
|
143
|
+
default: false,
|
|
144
|
+
description: common_1.nls.localizeByDefault('Controls whether manually terminating one session will stop all of the compound sessions.')
|
|
145
|
+
},
|
|
146
|
+
preLaunchTask: {
|
|
147
|
+
type: 'string',
|
|
148
|
+
default: '',
|
|
149
|
+
description: common_1.nls.localizeByDefault('Task to run before any of the compound configurations start.')
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
default: debug_compound_1.defaultCompound
|
|
153
|
+
},
|
|
154
|
+
default: [debug_compound_1.defaultCompound]
|
|
155
|
+
},
|
|
156
|
+
inputs: variable_input_schema_1.inputsSchema.definitions.inputs
|
|
157
|
+
},
|
|
158
|
+
allowComments: true,
|
|
159
|
+
allowTrailingCommas: true,
|
|
160
|
+
};
|
|
161
|
+
//# sourceMappingURL=debug-schema-updater.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-schema-updater.js","sourceRoot":"","sources":["../../src/browser/debug-schema-updater.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WorkspaceService } from '@theia/workspace/lib/browser';
|
|
2
|
+
import { type DebugSessionOptions } from './debug-session-options';
|
|
3
|
+
/**
|
|
4
|
+
* Provides a label for the debug session without the need to create the session.
|
|
5
|
+
* Debug session labels are used to check if sessions are the "same".
|
|
6
|
+
*/
|
|
7
|
+
export declare class DebugSessionConfigurationLabelProvider {
|
|
8
|
+
protected readonly workspaceService: WorkspaceService;
|
|
9
|
+
getLabel(params: Pick<DebugSessionOptions, 'name' | 'workspaceFolderUri'>, includeRoot?: boolean): string;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=debug-session-configuration-label-provider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-session-configuration-label-provider.d.ts","sourceRoot":"","sources":["../../src/browser/debug-session-configuration-label-provider.ts"],"names":[],"mappings":"AAkBA,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAChE,OAAO,EAAE,KAAK,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAEnE;;;GAGG;AACH,qBACa,sCAAsC;IAG/C,SAAS,CAAC,QAAQ,CAAC,gBAAgB,EAAE,gBAAgB,CAAC;IAGtD,QAAQ,CACJ,MAAM,EAAE,IAAI,CAAC,mBAAmB,EAAE,MAAM,GAAG,oBAAoB,CAAC,EAChE,WAAW,UAAiD,GAC7D,MAAM;CAUZ"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2025 and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.DebugSessionConfigurationLabelProvider = void 0;
|
|
19
|
+
const tslib_1 = require("tslib");
|
|
20
|
+
const uri_1 = require("@theia/core/lib/common/uri");
|
|
21
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
22
|
+
const browser_1 = require("@theia/workspace/lib/browser");
|
|
23
|
+
/**
|
|
24
|
+
* Provides a label for the debug session without the need to create the session.
|
|
25
|
+
* Debug session labels are used to check if sessions are the "same".
|
|
26
|
+
*/
|
|
27
|
+
let DebugSessionConfigurationLabelProvider = class DebugSessionConfigurationLabelProvider {
|
|
28
|
+
// https://github.com/microsoft/vscode/blob/907518a25c6d6b9467cbcc57132c6adb7e7396b0/src/vs/workbench/contrib/debug/browser/debugSession.ts#L253-L256
|
|
29
|
+
getLabel(params, includeRoot = this.workspaceService.tryGetRoots().length > 1) {
|
|
30
|
+
let { name, workspaceFolderUri } = params;
|
|
31
|
+
if (includeRoot && workspaceFolderUri) {
|
|
32
|
+
const uri = new uri_1.default(workspaceFolderUri);
|
|
33
|
+
const path = uri.path;
|
|
34
|
+
const basenameOrAuthority = path.name || uri.authority;
|
|
35
|
+
name += ` (${basenameOrAuthority})`;
|
|
36
|
+
}
|
|
37
|
+
return name;
|
|
38
|
+
}
|
|
39
|
+
};
|
|
40
|
+
exports.DebugSessionConfigurationLabelProvider = DebugSessionConfigurationLabelProvider;
|
|
41
|
+
tslib_1.__decorate([
|
|
42
|
+
(0, inversify_1.inject)(browser_1.WorkspaceService),
|
|
43
|
+
tslib_1.__metadata("design:type", browser_1.WorkspaceService)
|
|
44
|
+
], DebugSessionConfigurationLabelProvider.prototype, "workspaceService", void 0);
|
|
45
|
+
exports.DebugSessionConfigurationLabelProvider = DebugSessionConfigurationLabelProvider = tslib_1.__decorate([
|
|
46
|
+
(0, inversify_1.injectable)()
|
|
47
|
+
], DebugSessionConfigurationLabelProvider);
|
|
48
|
+
//# sourceMappingURL=debug-session-configuration-label-provider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-session-configuration-label-provider.js","sourceRoot":"","sources":["../../src/browser/debug-session-configuration-label-provider.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,iCAAiC;AACjC,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;AAEhF,oDAA6C;AAC7C,4DAAkE;AAClE,0DAAgE;AAGhE;;;GAGG;AAEI,IAAM,sCAAsC,GAA5C,MAAM,sCAAsC;IAK/C,qJAAqJ;IACrJ,QAAQ,CACJ,MAAgE,EAChE,WAAW,GAAG,IAAI,CAAC,gBAAgB,CAAC,WAAW,EAAE,CAAC,MAAM,GAAG,CAAC;QAE5D,IAAI,EAAE,IAAI,EAAE,kBAAkB,EAAE,GAAG,MAAM,CAAC;QAC1C,IAAI,WAAW,IAAI,kBAAkB,EAAE,CAAC;YACpC,MAAM,GAAG,GAAG,IAAI,aAAG,CAAC,kBAAkB,CAAC,CAAC;YACxC,MAAM,IAAI,GAAG,GAAG,CAAC,IAAI,CAAC;YACtB,MAAM,mBAAmB,GAAG,IAAI,CAAC,IAAI,IAAI,GAAG,CAAC,SAAS,CAAC;YACvD,IAAI,IAAI,KAAK,mBAAmB,GAAG,CAAC;QACxC,CAAC;QACD,OAAO,IAAI,CAAC;IAChB,CAAC;CACJ,CAAA;AAnBY,wFAAsC;AAG5B;IADlB,IAAA,kBAAM,EAAC,0BAAgB,CAAC;sCACY,0BAAgB;gFAAC;iDAH7C,sCAAsC;IADlD,IAAA,sBAAU,GAAE;GACA,sCAAsC,CAmBlD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-session-configuration-label-provider.spec.d.ts","sourceRoot":"","sources":["../../src/browser/debug-session-configuration-label-provider.spec.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2025 and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
const frontend_application_config_provider_1 = require("@theia/core/lib/browser/frontend-application-config-provider");
|
|
19
|
+
const jsdom_1 = require("@theia/core/lib/browser/test/jsdom");
|
|
20
|
+
const disableJSDOM = (0, jsdom_1.enableJSDOM)();
|
|
21
|
+
frontend_application_config_provider_1.FrontendApplicationConfigProvider.set({});
|
|
22
|
+
const inversify_1 = require("@theia/core/shared/inversify");
|
|
23
|
+
const workspace_service_1 = require("@theia/workspace/lib/browser/workspace-service");
|
|
24
|
+
const chai_1 = require("chai");
|
|
25
|
+
const debug_session_configuration_label_provider_1 = require("./debug-session-configuration-label-provider");
|
|
26
|
+
disableJSDOM();
|
|
27
|
+
describe('DebugSessionConfigurationLabelProvider', () => {
|
|
28
|
+
let roots = [];
|
|
29
|
+
const tryGetRoots = () => roots;
|
|
30
|
+
let labelProvider;
|
|
31
|
+
before(() => {
|
|
32
|
+
const container = new inversify_1.Container();
|
|
33
|
+
container.bind(workspace_service_1.WorkspaceService).toConstantValue({
|
|
34
|
+
tryGetRoots
|
|
35
|
+
});
|
|
36
|
+
container.bind(debug_session_configuration_label_provider_1.DebugSessionConfigurationLabelProvider).toSelf();
|
|
37
|
+
labelProvider = container.get(debug_session_configuration_label_provider_1.DebugSessionConfigurationLabelProvider);
|
|
38
|
+
});
|
|
39
|
+
beforeEach(() => {
|
|
40
|
+
roots = [];
|
|
41
|
+
});
|
|
42
|
+
it('should return the name', () => {
|
|
43
|
+
const name = 'name';
|
|
44
|
+
const label = labelProvider.getLabel({ name });
|
|
45
|
+
(0, chai_1.expect)(label).to.be.equal(name);
|
|
46
|
+
});
|
|
47
|
+
it('should return the name with default params', () => {
|
|
48
|
+
const name = 'name';
|
|
49
|
+
const label = labelProvider.getLabel({ name, workspaceFolderUri: 'file:///workspace/folder/basename' });
|
|
50
|
+
(0, chai_1.expect)(label).to.be.equal(name);
|
|
51
|
+
});
|
|
52
|
+
it('should return the multi-root name ignoring the workspace', () => {
|
|
53
|
+
const name = 'name';
|
|
54
|
+
const label = labelProvider.getLabel({ name, workspaceFolderUri: 'file:///workspace/folder/basename' }, true);
|
|
55
|
+
(0, chai_1.expect)(label).to.be.equal('name (basename)');
|
|
56
|
+
});
|
|
57
|
+
it('should ignore the workspace and return the name without default params', () => {
|
|
58
|
+
roots = [
|
|
59
|
+
{ /* irrelevant */},
|
|
60
|
+
{ /* irrelevant */},
|
|
61
|
+
];
|
|
62
|
+
const name = 'name';
|
|
63
|
+
const label = labelProvider.getLabel({ name }, false);
|
|
64
|
+
(0, chai_1.expect)(label).to.be.equal(name);
|
|
65
|
+
});
|
|
66
|
+
it('should handle multi-workspace roots', () => {
|
|
67
|
+
roots = [
|
|
68
|
+
{ /* irrelevant */},
|
|
69
|
+
{ /* irrelevant */},
|
|
70
|
+
];
|
|
71
|
+
const name = 'name';
|
|
72
|
+
const label = labelProvider.getLabel({ name, workspaceFolderUri: 'file:///workspace/root1/folder/basename' });
|
|
73
|
+
(0, chai_1.expect)(label).to.be.equal('name (basename)');
|
|
74
|
+
});
|
|
75
|
+
it('should handle falsy basename and URI authority wins with multi-workspace roots', () => {
|
|
76
|
+
roots = [
|
|
77
|
+
{ /* irrelevant */},
|
|
78
|
+
{ /* irrelevant */},
|
|
79
|
+
];
|
|
80
|
+
const label = labelProvider.getLabel({ name: '', workspaceFolderUri: 'http://example.com' });
|
|
81
|
+
(0, chai_1.expect)(label).to.be.equal(' (example.com)');
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
//# sourceMappingURL=debug-session-configuration-label-provider.spec.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-session-configuration-label-provider.spec.js","sourceRoot":"","sources":["../../src/browser/debug-session-configuration-label-provider.spec.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { DebugProtocol } from '@vscode/debugprotocol';
|
|
2
|
+
import { Deferred } from '@theia/core/lib/common/promise-util';
|
|
3
|
+
import { Event, Emitter, DisposableCollection, Disposable, MaybePromise } from '@theia/core';
|
|
4
|
+
import { OutputChannel } from '@theia/output/lib/browser/output-channel';
|
|
5
|
+
import { DebugChannel } from '../common/debug-service';
|
|
6
|
+
export type DebugRequestHandler = (request: DebugProtocol.Request) => MaybePromise<any>;
|
|
7
|
+
export interface DebugRequestTypes {
|
|
8
|
+
'attach': [DebugProtocol.AttachRequestArguments, DebugProtocol.AttachResponse];
|
|
9
|
+
'breakpointLocations': [DebugProtocol.BreakpointLocationsArguments, DebugProtocol.BreakpointLocationsResponse];
|
|
10
|
+
'cancel': [DebugProtocol.CancelArguments, DebugProtocol.CancelResponse];
|
|
11
|
+
'completions': [DebugProtocol.CompletionsArguments, DebugProtocol.CompletionsResponse];
|
|
12
|
+
'configurationDone': [DebugProtocol.ConfigurationDoneArguments, DebugProtocol.ConfigurationDoneResponse];
|
|
13
|
+
'continue': [DebugProtocol.ContinueArguments, DebugProtocol.ContinueResponse];
|
|
14
|
+
'dataBreakpointInfo': [DebugProtocol.DataBreakpointInfoArguments, DebugProtocol.DataBreakpointInfoResponse];
|
|
15
|
+
'disassemble': [DebugProtocol.DisassembleArguments, DebugProtocol.DisassembleResponse];
|
|
16
|
+
'disconnect': [DebugProtocol.DisconnectArguments, DebugProtocol.DisconnectResponse];
|
|
17
|
+
'evaluate': [DebugProtocol.EvaluateArguments, DebugProtocol.EvaluateResponse];
|
|
18
|
+
'exceptionInfo': [DebugProtocol.ExceptionInfoArguments, DebugProtocol.ExceptionInfoResponse];
|
|
19
|
+
'goto': [DebugProtocol.GotoArguments, DebugProtocol.GotoResponse];
|
|
20
|
+
'gotoTargets': [DebugProtocol.GotoTargetsArguments, DebugProtocol.GotoTargetsResponse];
|
|
21
|
+
'initialize': [DebugProtocol.InitializeRequestArguments, DebugProtocol.InitializeResponse];
|
|
22
|
+
'launch': [DebugProtocol.LaunchRequestArguments, DebugProtocol.LaunchResponse];
|
|
23
|
+
'loadedSources': [DebugProtocol.LoadedSourcesArguments, DebugProtocol.LoadedSourcesResponse];
|
|
24
|
+
'modules': [DebugProtocol.ModulesArguments, DebugProtocol.ModulesResponse];
|
|
25
|
+
'next': [DebugProtocol.NextArguments, DebugProtocol.NextResponse];
|
|
26
|
+
'pause': [DebugProtocol.PauseArguments, DebugProtocol.PauseResponse];
|
|
27
|
+
'readMemory': [DebugProtocol.ReadMemoryArguments, DebugProtocol.ReadMemoryResponse];
|
|
28
|
+
'restart': [DebugProtocol.RestartArguments, DebugProtocol.RestartResponse];
|
|
29
|
+
'restartFrame': [DebugProtocol.RestartFrameArguments, DebugProtocol.RestartFrameResponse];
|
|
30
|
+
'reverseContinue': [DebugProtocol.ReverseContinueArguments, DebugProtocol.ReverseContinueResponse];
|
|
31
|
+
'scopes': [DebugProtocol.ScopesArguments, DebugProtocol.ScopesResponse];
|
|
32
|
+
'setBreakpoints': [DebugProtocol.SetBreakpointsArguments, DebugProtocol.SetBreakpointsResponse];
|
|
33
|
+
'setDataBreakpoints': [DebugProtocol.SetDataBreakpointsArguments, DebugProtocol.SetDataBreakpointsResponse];
|
|
34
|
+
'setExceptionBreakpoints': [DebugProtocol.SetExceptionBreakpointsArguments, DebugProtocol.SetExceptionBreakpointsResponse];
|
|
35
|
+
'setExpression': [DebugProtocol.SetExpressionArguments, DebugProtocol.SetExpressionResponse];
|
|
36
|
+
'setFunctionBreakpoints': [DebugProtocol.SetFunctionBreakpointsArguments, DebugProtocol.SetFunctionBreakpointsResponse];
|
|
37
|
+
'setInstructionBreakpoints': [DebugProtocol.SetInstructionBreakpointsArguments, DebugProtocol.SetInstructionBreakpointsResponse];
|
|
38
|
+
'setVariable': [DebugProtocol.SetVariableArguments, DebugProtocol.SetVariableResponse];
|
|
39
|
+
'source': [DebugProtocol.SourceArguments, DebugProtocol.SourceResponse];
|
|
40
|
+
'stackTrace': [DebugProtocol.StackTraceArguments, DebugProtocol.StackTraceResponse];
|
|
41
|
+
'stepBack': [DebugProtocol.StepBackArguments, DebugProtocol.StepBackResponse];
|
|
42
|
+
'stepIn': [DebugProtocol.StepInArguments, DebugProtocol.StepInResponse];
|
|
43
|
+
'stepInTargets': [DebugProtocol.StepInTargetsArguments, DebugProtocol.StepInTargetsResponse];
|
|
44
|
+
'stepOut': [DebugProtocol.StepOutArguments, DebugProtocol.StepOutResponse];
|
|
45
|
+
'terminate': [DebugProtocol.TerminateArguments, DebugProtocol.TerminateResponse];
|
|
46
|
+
'terminateThreads': [DebugProtocol.TerminateThreadsArguments, DebugProtocol.TerminateThreadsResponse];
|
|
47
|
+
'threads': [{}, DebugProtocol.ThreadsResponse];
|
|
48
|
+
'variables': [DebugProtocol.VariablesArguments, DebugProtocol.VariablesResponse];
|
|
49
|
+
'writeMemory': [DebugProtocol.WriteMemoryArguments, DebugProtocol.WriteMemoryResponse];
|
|
50
|
+
}
|
|
51
|
+
export interface DebugEventTypes {
|
|
52
|
+
'breakpoint': DebugProtocol.BreakpointEvent;
|
|
53
|
+
'capabilities': DebugProtocol.CapabilitiesEvent;
|
|
54
|
+
'continued': DebugProtocol.ContinuedEvent;
|
|
55
|
+
'exited': DebugProtocol.ExitedEvent;
|
|
56
|
+
'initialized': DebugProtocol.InitializedEvent;
|
|
57
|
+
'invalidated': DebugProtocol.InvalidatedEvent;
|
|
58
|
+
'loadedSource': DebugProtocol.LoadedSourceEvent;
|
|
59
|
+
'module': DebugProtocol.ModuleEvent;
|
|
60
|
+
'output': DebugProtocol.OutputEvent;
|
|
61
|
+
'process': DebugProtocol.ProcessEvent;
|
|
62
|
+
'progressEnd': DebugProtocol.ProgressEndEvent;
|
|
63
|
+
'progressStart': DebugProtocol.ProgressStartEvent;
|
|
64
|
+
'progressUpdate': DebugProtocol.ProgressUpdateEvent;
|
|
65
|
+
'stopped': DebugProtocol.StoppedEvent;
|
|
66
|
+
'terminated': DebugProtocol.TerminatedEvent;
|
|
67
|
+
'thread': DebugProtocol.ThreadEvent;
|
|
68
|
+
}
|
|
69
|
+
export type DebugEventNames = keyof DebugEventTypes;
|
|
70
|
+
export declare namespace DebugEventTypes {
|
|
71
|
+
function isStandardEvent(event: string): event is DebugEventNames;
|
|
72
|
+
}
|
|
73
|
+
export declare class DebugSessionConnection implements Disposable {
|
|
74
|
+
readonly sessionId: string;
|
|
75
|
+
protected readonly traceOutputChannel: OutputChannel | undefined;
|
|
76
|
+
private sequence;
|
|
77
|
+
protected readonly pendingRequests: Map<number, Deferred<DebugProtocol.Response>>;
|
|
78
|
+
protected readonly connectionPromise: Promise<DebugChannel>;
|
|
79
|
+
protected readonly requestHandlers: Map<string, DebugRequestHandler>;
|
|
80
|
+
protected readonly onDidCustomEventEmitter: Emitter<DebugProtocol.Event>;
|
|
81
|
+
readonly onDidCustomEvent: Event<DebugProtocol.Event>;
|
|
82
|
+
protected readonly onDidCloseEmitter: Emitter<void>;
|
|
83
|
+
readonly onDidClose: Event<void>;
|
|
84
|
+
protected isClosed: boolean;
|
|
85
|
+
protected readonly toDispose: DisposableCollection;
|
|
86
|
+
constructor(sessionId: string, connectionFactory: (sessionId: string) => Promise<DebugChannel>, traceOutputChannel: OutputChannel | undefined);
|
|
87
|
+
get disposed(): boolean;
|
|
88
|
+
protected checkDisposed(): void;
|
|
89
|
+
dispose(): void;
|
|
90
|
+
protected createConnection(connectionFactory: (sessionId: string) => Promise<DebugChannel>): Promise<DebugChannel>;
|
|
91
|
+
protected allThreadsContinued: boolean;
|
|
92
|
+
sendRequest<K extends keyof DebugRequestTypes>(command: K, args: DebugRequestTypes[K][0], timeout?: number): Promise<DebugRequestTypes[K][1]>;
|
|
93
|
+
sendCustomRequest<T extends DebugProtocol.Response>(command: string, args?: any): Promise<T>;
|
|
94
|
+
protected cancelPendingRequests(): void;
|
|
95
|
+
protected doSendRequest<K extends DebugProtocol.Response>(command: string, args?: any, timeout?: number): Promise<K>;
|
|
96
|
+
protected send(message: DebugProtocol.ProtocolMessage): Promise<void>;
|
|
97
|
+
protected handleMessage(data: string): void;
|
|
98
|
+
protected handleResponse(response: DebugProtocol.Response): void;
|
|
99
|
+
onRequest(command: string, handler: DebugRequestHandler): void;
|
|
100
|
+
protected handleRequest(request: DebugProtocol.Request): Promise<void>;
|
|
101
|
+
protected handleEvent(event: DebugProtocol.Event): void;
|
|
102
|
+
protected readonly emitters: Map<string, Emitter<DebugProtocol.Event>>;
|
|
103
|
+
on<K extends keyof DebugEventTypes>(kind: K, listener: (e: DebugEventTypes[K]) => any): Disposable;
|
|
104
|
+
onEvent<K extends keyof DebugEventTypes>(kind: K): Event<DebugEventTypes[K]>;
|
|
105
|
+
protected fire<K extends keyof DebugEventTypes>(kind: K, e: DebugEventTypes[K]): void;
|
|
106
|
+
protected doFire<K extends keyof DebugEventTypes>(kind: K, e: DebugEventTypes[K]): void;
|
|
107
|
+
protected getEmitter<K extends keyof DebugEventTypes>(kind: K): Emitter<DebugEventTypes[K]>;
|
|
108
|
+
protected newEmitter(): Emitter<DebugProtocol.Event>;
|
|
109
|
+
protected fireContinuedEvent(threadId: number, allThreadsContinued?: boolean): void;
|
|
110
|
+
}
|
|
111
|
+
//# sourceMappingURL=debug-session-connection.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"debug-session-connection.d.ts","sourceRoot":"","sources":["../../src/browser/debug-session-connection.ts"],"names":[],"mappings":"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"}
|