├── .eslintignore ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── prepare-release.yml │ └── publish.yml ├── .gitignore ├── .mocharc ├── .nycrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── examples ├── workflow-server-bundled │ ├── LICENSE │ ├── README.md │ └── package.json └── workflow-server │ ├── LICENSE │ ├── README.md │ ├── browser.d.ts │ ├── browser.js │ ├── node.d.ts │ ├── node.js │ ├── package.json │ ├── src │ ├── browser │ │ ├── .indexignore │ │ ├── app.ts │ │ ├── example1.json │ │ ├── index.ts │ │ ├── mock-model-storage.ts │ │ └── reexport.ts │ ├── common │ │ ├── graph-extension.ts │ │ ├── handler │ │ │ ├── create-activity-node-handler.ts │ │ │ ├── create-automated-task-handler.ts │ │ │ ├── create-category-handler.ts │ │ │ ├── create-decision-node-handler.ts │ │ │ ├── create-edge-handler.ts │ │ │ ├── create-fork-node-handler.ts │ │ │ ├── create-fork-or-join-node-handler.ts │ │ │ ├── create-join-node-handler.ts │ │ │ ├── create-manual-task-handler.ts │ │ │ ├── create-merge-node-handler.ts │ │ │ ├── create-task-handler.ts │ │ │ ├── create-weighted-edge-handler.ts │ │ │ ├── create-workflow-node-operation-handler.ts │ │ │ └── grid-snapper.ts │ │ ├── index.ts │ │ ├── labeledit │ │ │ └── workflow-label-edit-validator.ts │ │ ├── layout │ │ │ └── workflow-layout-configurator.ts │ │ ├── marker │ │ │ └── workflow-model-validator.ts │ │ ├── model │ │ │ └── workflow-navigation-target-resolver.ts │ │ ├── provider │ │ │ ├── abstract-next-or-previous-navigation-target-provider.ts │ │ │ ├── next-node-navigation-target-provider.ts │ │ │ ├── node-documentation-navigation-target-provider.ts │ │ │ ├── previous-node-navigation-target-provider.ts │ │ │ ├── workflow-command-palette-action-provider.ts │ │ │ └── workflow-context-menu-item-provider.ts │ │ ├── taskedit │ │ │ ├── edit-task-operation-handler.ts │ │ │ ├── task-edit-context-provider.ts │ │ │ └── task-edit-validator.ts │ │ ├── util │ │ │ └── model-types.ts │ │ ├── workflow-diagram-configuration.ts │ │ ├── workflow-diagram-module.ts │ │ ├── workflow-edge-creation-checker.ts │ │ ├── workflow-glsp-server.ts │ │ └── workflow-popup-factory.ts │ └── node │ │ ├── .indexignore │ │ ├── app.ts │ │ ├── index.ts │ │ ├── reexport.ts │ │ └── workflow-cli-parser.ts │ ├── tsconfig.json │ └── webpack.config.js ├── lerna.json ├── package.json ├── packages ├── graph │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── default-types.ts │ │ ├── galignable.spec.ts │ │ ├── galignable.ts │ │ ├── gbounds-aware.spec.ts │ │ ├── gbounds-aware.ts │ │ ├── gbutton.ts │ │ ├── gcompartment.ts │ │ ├── gedge-layoutable.ts │ │ ├── gedge.ts │ │ ├── gforeign-object-element.ts │ │ ├── ggraph.ts │ │ ├── ghtml-root.ts │ │ ├── gissue-marker.ts │ │ ├── glabel.ts │ │ ├── glayoutable.ts │ │ ├── glayouting.ts │ │ ├── gmodel-element.ts │ │ ├── gmodel-util.ts │ │ ├── gnode.ts │ │ ├── gport.ts │ │ ├── gpre-rendered-element.ts │ │ ├── gresizable.ts │ │ ├── gshape-element.ts │ │ ├── gshaped-prerendered-element.ts │ │ ├── index.spec.ts │ │ └── index.ts │ └── tsconfig.json ├── layout-elk │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── di.config.spec.ts │ │ ├── di.config.ts │ │ ├── element-filter.ts │ │ ├── glsp-elk-layout-engine.ts │ │ ├── index.ts │ │ ├── layout-configurator.ts │ │ └── reexport.ts │ └── tsconfig.json └── server │ ├── LICENSE │ ├── README.md │ ├── browser.d.ts │ ├── browser.js │ ├── node.d.ts │ ├── node.js │ ├── package.json │ ├── src │ ├── browser │ │ ├── di │ │ │ └── app-module.ts │ │ ├── index.ts │ │ ├── launch │ │ │ └── worker-server-launcher.ts │ │ └── reexport.ts │ ├── common │ │ ├── .indexignore │ │ ├── actions │ │ │ ├── action-dispatcher.spec.ts │ │ │ ├── action-dispatcher.ts │ │ │ ├── action-handler-registry.spec.ts │ │ │ ├── action-handler-registry.ts │ │ │ ├── action-handler.ts │ │ │ ├── client-action-handler.ts │ │ │ ├── global-action-provider.spec.ts │ │ │ └── global-action-provider.ts │ │ ├── command │ │ │ ├── command-stack.spec.ts │ │ │ ├── command-stack.ts │ │ │ ├── command.spec.ts │ │ │ ├── command.ts │ │ │ ├── recording-command.spec.ts │ │ │ ├── recording-command.ts │ │ │ └── undo-redo-action-handler.ts │ │ ├── di │ │ │ ├── binding-target.spec.ts │ │ │ ├── binding-target.ts │ │ │ ├── client-session-module.ts │ │ │ ├── diagram-module.ts │ │ │ ├── glsp-module.ts │ │ │ ├── multi-binding.ts │ │ │ ├── multi-bindings.spec.ts │ │ │ ├── server-module.ts │ │ │ └── service-identifiers.ts │ │ ├── diagram │ │ │ └── diagram-configuration.ts │ │ ├── features │ │ │ ├── clipboard │ │ │ │ └── request-clipboard-data-action-handler.ts │ │ │ ├── contextactions │ │ │ │ ├── command-palette-action-provider.ts │ │ │ │ ├── context-actions-provider-registry.spec.ts │ │ │ │ ├── context-actions-provider-registry.ts │ │ │ │ ├── context-actions-provider.ts │ │ │ │ ├── context-menu-item-provider.ts │ │ │ │ ├── request-context-actions-handler.spec.ts │ │ │ │ ├── request-context-actions-handler.ts │ │ │ │ ├── tool-palette-item-provider.spec.ts │ │ │ │ └── tool-palette-item-provider.ts │ │ │ ├── directediting │ │ │ │ ├── context-edit-validator-registry.spec.ts │ │ │ │ ├── context-edit-validator-registry.ts │ │ │ │ ├── context-edit-validator.ts │ │ │ │ ├── label-edit-validator.ts │ │ │ │ ├── request-edit-validation-handler.spec.ts │ │ │ │ └── request-edit-validation-handler.ts │ │ │ ├── layout │ │ │ │ ├── computed-bounds-action-handler.ts │ │ │ │ ├── layout-engine.ts │ │ │ │ └── layout-operation-handler.ts │ │ │ ├── model │ │ │ │ ├── gmodel-factory.ts │ │ │ │ ├── gmodel-index.ts │ │ │ │ ├── gmodel-serializer.spec.ts │ │ │ │ ├── gmodel-serializer.ts │ │ │ │ ├── model-state.ts │ │ │ │ ├── model-submission-handler.ts │ │ │ │ ├── request-model-action-handler.ts │ │ │ │ ├── save-model-action-handler.ts │ │ │ │ ├── set-edit-mode-action-handler.ts │ │ │ │ └── source-model-storage.ts │ │ │ ├── navigation │ │ │ │ ├── json-opener-options.ts │ │ │ │ ├── navigation-target-provider-registry.ts │ │ │ │ ├── navigation-target-provider.ts │ │ │ │ ├── navigation-target-resolution.ts │ │ │ │ ├── navigation-target-resolver.ts │ │ │ │ ├── request-navigation-targets-action-handler.ts │ │ │ │ └── resolve-navigation-targets-action-handler.ts │ │ │ ├── popup │ │ │ │ ├── popup-model-factory.ts │ │ │ │ └── request-popup-model-action-handler.ts │ │ │ ├── progress │ │ │ │ └── progress-service.ts │ │ │ ├── type-hints │ │ │ │ ├── edge-creation-checker.ts │ │ │ │ ├── request-check-edge-action-handler.ts │ │ │ │ ├── request-type-hints-action-handler.spec.ts │ │ │ │ └── request-type-hints-action-handler.ts │ │ │ └── validation │ │ │ │ ├── model-validator.ts │ │ │ │ └── request-markers-handler.ts │ │ ├── gmodel │ │ │ ├── README.md │ │ │ ├── apply-label-edit-operation-handler.ts │ │ │ ├── change-bounds-operation-handler.ts │ │ │ ├── change-routing-points-operation-handler.ts │ │ │ ├── cut-operation-handler.ts │ │ │ ├── delete-operation-handler.ts │ │ │ ├── gmodel-create-edge-operation-handler.ts │ │ │ ├── gmodel-create-node-operation-handler.ts │ │ │ ├── gmodel-diagram-module.ts │ │ │ ├── gmodel-operation-handler.ts │ │ │ ├── paste-operation-handler.ts │ │ │ └── reconnect-edge-operation-handler.ts │ │ ├── index.ts │ │ ├── launch │ │ │ ├── glsp-server-launcher.ts │ │ │ └── jsonrpc-server-launcher.ts │ │ ├── operations │ │ │ ├── compound-operation-handler.ts │ │ │ ├── create-operation-handler.ts │ │ │ ├── json-operation-handler.ts │ │ │ ├── operation-action-handler.ts │ │ │ ├── operation-handler-registry.spec.ts │ │ │ ├── operation-handler-registry.ts │ │ │ └── operation-handler.ts │ │ ├── protocol │ │ │ ├── client-action.ts │ │ │ ├── glsp-server.spec.ts │ │ │ └── glsp-server.ts │ │ ├── reexport.ts │ │ ├── session │ │ │ ├── client-session-factory.spec.ts │ │ │ ├── client-session-factory.ts │ │ │ ├── client-session-initializer.ts │ │ │ ├── client-session-listener.ts │ │ │ ├── client-session-manager.spec.ts │ │ │ ├── client-session-manager.ts │ │ │ └── client-session.ts │ │ ├── test │ │ │ └── mock-util.ts │ │ └── utils │ │ │ ├── args-util.ts │ │ │ ├── client-options-util.ts │ │ │ ├── console-logger.ts │ │ │ ├── glsp-server-error.ts │ │ │ ├── layout-util.ts │ │ │ ├── logger.ts │ │ │ ├── promise-queue.spec.ts │ │ │ ├── promise-queue.ts │ │ │ ├── registry.spec.ts │ │ │ └── registry.ts │ └── node │ │ ├── abstract-json-model-storage.ts │ │ ├── di │ │ ├── app-module.ts │ │ └── winston-logger.ts │ │ ├── gmodel │ │ └── gmodel-storage.ts │ │ ├── index.ts │ │ ├── launch │ │ ├── cli-parser.spec.ts │ │ ├── cli-parser.ts │ │ ├── socket-cli-parser.spec.ts │ │ ├── socket-cli-parser.ts │ │ ├── socket-server-launcher.spec.ts │ │ ├── socket-server-launcher.ts │ │ └── websocket-server-launcher.ts │ │ └── reexport.ts │ └── tsconfig.json ├── tsconfig.eslint.json ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.github/workflows/prepare-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.mocharc -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@eclipse-glsp/nyc-config" 3 | } 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | "@eclipse-glsp/prettier-config" 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/SECURITY.md -------------------------------------------------------------------------------- /examples/workflow-server-bundled/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server-bundled/LICENSE -------------------------------------------------------------------------------- /examples/workflow-server-bundled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server-bundled/README.md -------------------------------------------------------------------------------- /examples/workflow-server-bundled/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server-bundled/package.json -------------------------------------------------------------------------------- /examples/workflow-server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/LICENSE -------------------------------------------------------------------------------- /examples/workflow-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/README.md -------------------------------------------------------------------------------- /examples/workflow-server/browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/browser.d.ts -------------------------------------------------------------------------------- /examples/workflow-server/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/browser.js -------------------------------------------------------------------------------- /examples/workflow-server/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/node.d.ts -------------------------------------------------------------------------------- /examples/workflow-server/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/node.js -------------------------------------------------------------------------------- /examples/workflow-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/package.json -------------------------------------------------------------------------------- /examples/workflow-server/src/browser/.indexignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/browser/.indexignore -------------------------------------------------------------------------------- /examples/workflow-server/src/browser/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/browser/app.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/browser/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/browser/example1.json -------------------------------------------------------------------------------- /examples/workflow-server/src/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/browser/index.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/browser/mock-model-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/browser/mock-model-storage.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/browser/reexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/browser/reexport.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/graph-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/graph-extension.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-activity-node-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-activity-node-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-automated-task-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-automated-task-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-category-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-category-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-decision-node-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-decision-node-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-edge-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-edge-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-fork-node-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-fork-node-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-fork-or-join-node-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-fork-or-join-node-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-join-node-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-join-node-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-manual-task-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-manual-task-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-merge-node-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-merge-node-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-task-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-task-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-weighted-edge-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-weighted-edge-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/create-workflow-node-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/create-workflow-node-operation-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/handler/grid-snapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/handler/grid-snapper.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/index.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/labeledit/workflow-label-edit-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/labeledit/workflow-label-edit-validator.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/layout/workflow-layout-configurator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/layout/workflow-layout-configurator.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/marker/workflow-model-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/marker/workflow-model-validator.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/model/workflow-navigation-target-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/model/workflow-navigation-target-resolver.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/provider/abstract-next-or-previous-navigation-target-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/provider/abstract-next-or-previous-navigation-target-provider.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/provider/next-node-navigation-target-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/provider/next-node-navigation-target-provider.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/provider/node-documentation-navigation-target-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/provider/node-documentation-navigation-target-provider.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/provider/previous-node-navigation-target-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/provider/previous-node-navigation-target-provider.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/provider/workflow-command-palette-action-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/provider/workflow-command-palette-action-provider.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/provider/workflow-context-menu-item-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/provider/workflow-context-menu-item-provider.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/taskedit/edit-task-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/taskedit/edit-task-operation-handler.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/taskedit/task-edit-context-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/taskedit/task-edit-context-provider.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/taskedit/task-edit-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/taskedit/task-edit-validator.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/util/model-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/util/model-types.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/workflow-diagram-configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/workflow-diagram-configuration.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/workflow-diagram-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/workflow-diagram-module.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/workflow-edge-creation-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/workflow-edge-creation-checker.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/workflow-glsp-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/workflow-glsp-server.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/common/workflow-popup-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/common/workflow-popup-factory.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/node/.indexignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/node/.indexignore -------------------------------------------------------------------------------- /examples/workflow-server/src/node/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/node/app.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/node/index.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/node/reexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/node/reexport.ts -------------------------------------------------------------------------------- /examples/workflow-server/src/node/workflow-cli-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/src/node/workflow-cli-parser.ts -------------------------------------------------------------------------------- /examples/workflow-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/tsconfig.json -------------------------------------------------------------------------------- /examples/workflow-server/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/examples/workflow-server/webpack.config.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/package.json -------------------------------------------------------------------------------- /packages/graph/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/LICENSE -------------------------------------------------------------------------------- /packages/graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/README.md -------------------------------------------------------------------------------- /packages/graph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/package.json -------------------------------------------------------------------------------- /packages/graph/src/default-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/default-types.ts -------------------------------------------------------------------------------- /packages/graph/src/galignable.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/galignable.spec.ts -------------------------------------------------------------------------------- /packages/graph/src/galignable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/galignable.ts -------------------------------------------------------------------------------- /packages/graph/src/gbounds-aware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gbounds-aware.spec.ts -------------------------------------------------------------------------------- /packages/graph/src/gbounds-aware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gbounds-aware.ts -------------------------------------------------------------------------------- /packages/graph/src/gbutton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gbutton.ts -------------------------------------------------------------------------------- /packages/graph/src/gcompartment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gcompartment.ts -------------------------------------------------------------------------------- /packages/graph/src/gedge-layoutable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gedge-layoutable.ts -------------------------------------------------------------------------------- /packages/graph/src/gedge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gedge.ts -------------------------------------------------------------------------------- /packages/graph/src/gforeign-object-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gforeign-object-element.ts -------------------------------------------------------------------------------- /packages/graph/src/ggraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/ggraph.ts -------------------------------------------------------------------------------- /packages/graph/src/ghtml-root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/ghtml-root.ts -------------------------------------------------------------------------------- /packages/graph/src/gissue-marker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gissue-marker.ts -------------------------------------------------------------------------------- /packages/graph/src/glabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/glabel.ts -------------------------------------------------------------------------------- /packages/graph/src/glayoutable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/glayoutable.ts -------------------------------------------------------------------------------- /packages/graph/src/glayouting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/glayouting.ts -------------------------------------------------------------------------------- /packages/graph/src/gmodel-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gmodel-element.ts -------------------------------------------------------------------------------- /packages/graph/src/gmodel-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gmodel-util.ts -------------------------------------------------------------------------------- /packages/graph/src/gnode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gnode.ts -------------------------------------------------------------------------------- /packages/graph/src/gport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gport.ts -------------------------------------------------------------------------------- /packages/graph/src/gpre-rendered-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gpre-rendered-element.ts -------------------------------------------------------------------------------- /packages/graph/src/gresizable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gresizable.ts -------------------------------------------------------------------------------- /packages/graph/src/gshape-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gshape-element.ts -------------------------------------------------------------------------------- /packages/graph/src/gshaped-prerendered-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/gshaped-prerendered-element.ts -------------------------------------------------------------------------------- /packages/graph/src/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/index.spec.ts -------------------------------------------------------------------------------- /packages/graph/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/src/index.ts -------------------------------------------------------------------------------- /packages/graph/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/graph/tsconfig.json -------------------------------------------------------------------------------- /packages/layout-elk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/LICENSE -------------------------------------------------------------------------------- /packages/layout-elk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/README.md -------------------------------------------------------------------------------- /packages/layout-elk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/package.json -------------------------------------------------------------------------------- /packages/layout-elk/src/di.config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/src/di.config.spec.ts -------------------------------------------------------------------------------- /packages/layout-elk/src/di.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/src/di.config.ts -------------------------------------------------------------------------------- /packages/layout-elk/src/element-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/src/element-filter.ts -------------------------------------------------------------------------------- /packages/layout-elk/src/glsp-elk-layout-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/src/glsp-elk-layout-engine.ts -------------------------------------------------------------------------------- /packages/layout-elk/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/src/index.ts -------------------------------------------------------------------------------- /packages/layout-elk/src/layout-configurator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/src/layout-configurator.ts -------------------------------------------------------------------------------- /packages/layout-elk/src/reexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/src/reexport.ts -------------------------------------------------------------------------------- /packages/layout-elk/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/layout-elk/tsconfig.json -------------------------------------------------------------------------------- /packages/server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/LICENSE -------------------------------------------------------------------------------- /packages/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/README.md -------------------------------------------------------------------------------- /packages/server/browser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/browser.d.ts -------------------------------------------------------------------------------- /packages/server/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/browser.js -------------------------------------------------------------------------------- /packages/server/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/node.d.ts -------------------------------------------------------------------------------- /packages/server/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/node.js -------------------------------------------------------------------------------- /packages/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/package.json -------------------------------------------------------------------------------- /packages/server/src/browser/di/app-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/browser/di/app-module.ts -------------------------------------------------------------------------------- /packages/server/src/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/browser/index.ts -------------------------------------------------------------------------------- /packages/server/src/browser/launch/worker-server-launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/browser/launch/worker-server-launcher.ts -------------------------------------------------------------------------------- /packages/server/src/browser/reexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/browser/reexport.ts -------------------------------------------------------------------------------- /packages/server/src/common/.indexignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/.indexignore -------------------------------------------------------------------------------- /packages/server/src/common/actions/action-dispatcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/actions/action-dispatcher.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/actions/action-dispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/actions/action-dispatcher.ts -------------------------------------------------------------------------------- /packages/server/src/common/actions/action-handler-registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/actions/action-handler-registry.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/actions/action-handler-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/actions/action-handler-registry.ts -------------------------------------------------------------------------------- /packages/server/src/common/actions/action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/actions/action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/actions/client-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/actions/client-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/actions/global-action-provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/actions/global-action-provider.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/actions/global-action-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/actions/global-action-provider.ts -------------------------------------------------------------------------------- /packages/server/src/common/command/command-stack.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/command/command-stack.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/command/command-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/command/command-stack.ts -------------------------------------------------------------------------------- /packages/server/src/common/command/command.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/command/command.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/command/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/command/command.ts -------------------------------------------------------------------------------- /packages/server/src/common/command/recording-command.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/command/recording-command.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/command/recording-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/command/recording-command.ts -------------------------------------------------------------------------------- /packages/server/src/common/command/undo-redo-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/command/undo-redo-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/binding-target.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/binding-target.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/binding-target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/binding-target.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/client-session-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/client-session-module.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/diagram-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/diagram-module.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/glsp-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/glsp-module.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/multi-binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/multi-binding.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/multi-bindings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/multi-bindings.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/server-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/server-module.ts -------------------------------------------------------------------------------- /packages/server/src/common/di/service-identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/di/service-identifiers.ts -------------------------------------------------------------------------------- /packages/server/src/common/diagram/diagram-configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/diagram/diagram-configuration.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/clipboard/request-clipboard-data-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/clipboard/request-clipboard-data-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/command-palette-action-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/command-palette-action-provider.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/context-actions-provider-registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/context-actions-provider-registry.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/context-actions-provider-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/context-actions-provider-registry.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/context-actions-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/context-actions-provider.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/context-menu-item-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/context-menu-item-provider.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/request-context-actions-handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/request-context-actions-handler.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/request-context-actions-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/request-context-actions-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/tool-palette-item-provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/tool-palette-item-provider.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/contextactions/tool-palette-item-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/contextactions/tool-palette-item-provider.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/directediting/context-edit-validator-registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/directediting/context-edit-validator-registry.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/directediting/context-edit-validator-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/directediting/context-edit-validator-registry.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/directediting/context-edit-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/directediting/context-edit-validator.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/directediting/label-edit-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/directediting/label-edit-validator.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/directediting/request-edit-validation-handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/directediting/request-edit-validation-handler.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/directediting/request-edit-validation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/directediting/request-edit-validation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/layout/computed-bounds-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/layout/computed-bounds-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/layout/layout-engine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/layout/layout-engine.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/layout/layout-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/layout/layout-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/gmodel-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/gmodel-factory.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/gmodel-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/gmodel-index.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/gmodel-serializer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/gmodel-serializer.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/gmodel-serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/gmodel-serializer.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/model-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/model-state.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/model-submission-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/model-submission-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/request-model-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/request-model-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/save-model-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/save-model-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/set-edit-mode-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/set-edit-mode-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/model/source-model-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/model/source-model-storage.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/navigation/json-opener-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/navigation/json-opener-options.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/navigation/navigation-target-provider-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/navigation/navigation-target-provider-registry.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/navigation/navigation-target-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/navigation/navigation-target-provider.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/navigation/navigation-target-resolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/navigation/navigation-target-resolution.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/navigation/navigation-target-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/navigation/navigation-target-resolver.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/navigation/request-navigation-targets-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/navigation/request-navigation-targets-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/navigation/resolve-navigation-targets-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/navigation/resolve-navigation-targets-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/popup/popup-model-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/popup/popup-model-factory.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/popup/request-popup-model-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/popup/request-popup-model-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/progress/progress-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/progress/progress-service.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/type-hints/edge-creation-checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/type-hints/edge-creation-checker.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/type-hints/request-check-edge-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/type-hints/request-check-edge-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/type-hints/request-type-hints-action-handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/type-hints/request-type-hints-action-handler.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/type-hints/request-type-hints-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/type-hints/request-type-hints-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/validation/model-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/validation/model-validator.ts -------------------------------------------------------------------------------- /packages/server/src/common/features/validation/request-markers-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/features/validation/request-markers-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/README.md -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/apply-label-edit-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/apply-label-edit-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/change-bounds-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/change-bounds-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/change-routing-points-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/change-routing-points-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/cut-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/cut-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/delete-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/delete-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/gmodel-create-edge-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/gmodel-create-edge-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/gmodel-create-node-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/gmodel-create-node-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/gmodel-diagram-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/gmodel-diagram-module.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/gmodel-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/gmodel-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/paste-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/paste-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/gmodel/reconnect-edge-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/gmodel/reconnect-edge-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/index.ts -------------------------------------------------------------------------------- /packages/server/src/common/launch/glsp-server-launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/launch/glsp-server-launcher.ts -------------------------------------------------------------------------------- /packages/server/src/common/launch/jsonrpc-server-launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/launch/jsonrpc-server-launcher.ts -------------------------------------------------------------------------------- /packages/server/src/common/operations/compound-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/operations/compound-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/operations/create-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/operations/create-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/operations/json-operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/operations/json-operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/operations/operation-action-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/operations/operation-action-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/operations/operation-handler-registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/operations/operation-handler-registry.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/operations/operation-handler-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/operations/operation-handler-registry.ts -------------------------------------------------------------------------------- /packages/server/src/common/operations/operation-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/operations/operation-handler.ts -------------------------------------------------------------------------------- /packages/server/src/common/protocol/client-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/protocol/client-action.ts -------------------------------------------------------------------------------- /packages/server/src/common/protocol/glsp-server.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/protocol/glsp-server.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/protocol/glsp-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/protocol/glsp-server.ts -------------------------------------------------------------------------------- /packages/server/src/common/reexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/reexport.ts -------------------------------------------------------------------------------- /packages/server/src/common/session/client-session-factory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/session/client-session-factory.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/session/client-session-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/session/client-session-factory.ts -------------------------------------------------------------------------------- /packages/server/src/common/session/client-session-initializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/session/client-session-initializer.ts -------------------------------------------------------------------------------- /packages/server/src/common/session/client-session-listener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/session/client-session-listener.ts -------------------------------------------------------------------------------- /packages/server/src/common/session/client-session-manager.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/session/client-session-manager.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/session/client-session-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/session/client-session-manager.ts -------------------------------------------------------------------------------- /packages/server/src/common/session/client-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/session/client-session.ts -------------------------------------------------------------------------------- /packages/server/src/common/test/mock-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/test/mock-util.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/args-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/args-util.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/client-options-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/client-options-util.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/console-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/console-logger.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/glsp-server-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/glsp-server-error.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/layout-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/layout-util.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/logger.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/promise-queue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/promise-queue.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/promise-queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/promise-queue.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/registry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/registry.spec.ts -------------------------------------------------------------------------------- /packages/server/src/common/utils/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/common/utils/registry.ts -------------------------------------------------------------------------------- /packages/server/src/node/abstract-json-model-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/abstract-json-model-storage.ts -------------------------------------------------------------------------------- /packages/server/src/node/di/app-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/di/app-module.ts -------------------------------------------------------------------------------- /packages/server/src/node/di/winston-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/di/winston-logger.ts -------------------------------------------------------------------------------- /packages/server/src/node/gmodel/gmodel-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/gmodel/gmodel-storage.ts -------------------------------------------------------------------------------- /packages/server/src/node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/index.ts -------------------------------------------------------------------------------- /packages/server/src/node/launch/cli-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/launch/cli-parser.spec.ts -------------------------------------------------------------------------------- /packages/server/src/node/launch/cli-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/launch/cli-parser.ts -------------------------------------------------------------------------------- /packages/server/src/node/launch/socket-cli-parser.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/launch/socket-cli-parser.spec.ts -------------------------------------------------------------------------------- /packages/server/src/node/launch/socket-cli-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/launch/socket-cli-parser.ts -------------------------------------------------------------------------------- /packages/server/src/node/launch/socket-server-launcher.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/launch/socket-server-launcher.spec.ts -------------------------------------------------------------------------------- /packages/server/src/node/launch/socket-server-launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/launch/socket-server-launcher.ts -------------------------------------------------------------------------------- /packages/server/src/node/launch/websocket-server-launcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/launch/websocket-server-launcher.ts -------------------------------------------------------------------------------- /packages/server/src/node/reexport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/src/node/reexport.ts -------------------------------------------------------------------------------- /packages/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/packages/server/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-glsp/glsp-server-node/HEAD/yarn.lock --------------------------------------------------------------------------------