Skip to content

Commit

Permalink
Moved comment to separate line to more highlight the feature
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Nov 15, 2024
1 parent 8b410d3 commit 8ba5758
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion rascal-lsp/RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ Note that rascal-lsp releases are bundled with VS Code releases, however due to
* For DSL extension developers:
* The present release is updated to work with Node.js 18. The next release will be updated to work with Node.js 20, to align with the VS Code engine and our dependencies.
* Changes to module `util::LanguageServer`:
* Code Actions can be defined using constructor `action` of type `CodeAction`, and registered using constructor `codeAction` of type `LanguageService`. Code Actions can also be attached to info, warning, and error messages as Quick Fixes.
* Code Actions can be defined using constructor `action` of type `CodeAction`, and registered using constructor `codeAction` of type `LanguageService`.
* Code Actions can also be attached to info, warning, and error messages as Quick Fixes.
* Constructors in type `LanguageService` are renamed to align them with the corresponding requests in LSP. Usage of the old names is now deprecated.
* Keyword parameter `useSpecialCaseHighlighting` is introduced on constructor `parsing` of type `LanguageService` (default: `true`). It is used to control whether or not the semantic highlighter should apply an odd special case (i.e., categories of `syntax` non-terminals are sometimes ignored); the semantic highlighter has been applying this special case for several releases. Usage of the special case is now deprecated.
* Constructor `codeLens` of type `LanguageService` has a function parameter with return type `lrel` instead of `rel` as before. This is to ensure that multiple code lenses for a single line are always ordered in the same way. Usage of return type `rel` for this function parameter is now deprecated.
Expand Down
3 changes: 2 additions & 1 deletion rascal-vscode-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ For other things we are working on have a look here:
* For DSL extension developers:
* The present release is updated to work with Node.js 18. The next release will be updated to work with Node.js 20, to align with the VS Code engine and our dependencies.
* Changes to module `util::LanguageServer`:
* Code Actions can be defined using constructor `action` of type `CodeAction`, and registered using constructor `codeAction` of type `LanguageService`. Code Actions can also be attached to info, warning, and error messages as Quick Fixes.
* Code Actions can be defined using constructor `action` of type `CodeAction`, and registered using constructor `codeAction` of type `LanguageService`.
* Code Actions can also be attached to info, warning, and error messages as Quick Fixes.
* Constructors in type `LanguageService` are renamed to align them with the corresponding requests in LSP. Usage of the old names is now deprecated.
* Keyword parameter `useSpecialCaseHighlighting` is introduced on constructor `parsing` of type `LanguageService` (default: `true`). It is used to control whether or not the semantic highlighter should apply an odd special case (i.e., categories of `syntax` non-terminals are sometimes ignored); the semantic highlighter has been applying this special case for several releases. Usage of the special case is now deprecated.
* Constructor `codeLens` of type `LanguageService` has a function parameter with return type `lrel` instead of `rel` as before. This is to ensure that multiple code lenses for a single line are always ordered in the same way. Usage of return type `rel` for this function parameter is now deprecated.
Expand Down

0 comments on commit 8ba5758

Please sign in to comment.