Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
![Context Mapper](https://raw.githubusercontent.com/wiki/ContextMapper/context-mapper-dsl/logo/cm-logo-github-small.png)
# ContextMapper DSL Language Server
[ContextMapper](https://contextmapper.org/) is an open source tool providing a Domain-specific Language based on Domain-Driven Design (DDD) patterns for context mapping and service decomposition.
# Context Mapper DSL Language Server

> **_NOTE:_** This language server is a proof of concept and does not support all Context Mapper features yet.

[Context Mapper](https://contextmapper.org/) is an open source tool providing a Domain-specific Language based on Domain-Driven Design (DDD) patterns for context mapping and service decomposition.

## System Requirements
The ContextMapper language server is implemented with Langium. To run the language server the following tools have to be installed locally:
The Context Mapper language server is implemented with Langium. To run the language server the following tools have to be installed locally:
* [Node.js](https://nodejs.org/en/download) (v22)

## Build and/or Run the language server
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lstreckeisen/context-mapper-language-server",
"description": "Langium language server for the ContextMapper DSL",
"description": "Langium language server for the Context Mapper DSL",
"version": "0.4.1",
"license": "Apache-2.0",
"publishConfig": {
Expand Down
15 changes: 0 additions & 15 deletions sonar-project.properties

This file was deleted.

1 change: 0 additions & 1 deletion src/language/commands/generators/PlantUMLGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export class PlantUMLGenerator implements ContextMapperGenerator {
// there must not be any extra spaces especially at the start, since the path will be treated as relative otherwise
const destination = (args[0] as string)?.trim()
if (destination == null || destination === '') {
console.log('Destination must be specified')
throw Error('Destination must be specified')
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ export class ContextMapperDslSemanticTokenProvider extends AbstractSemanticToken
const semanticTokenProvider = this.semanticTokenProviderRegistry.get(node)
if (semanticTokenProvider) {
semanticTokenProvider.highlight(node, acceptor)
} else {
console.error('Node type with no token provider', node.$type)
}
}
}
Loading