ntt icon indicating copy to clipboard operation
ntt copied to clipboard

Modern tools for TTCN-3

Results 17 ntt issues
Sort by recently updated
recently updated
newest added

When I am opening a single directory with TTCN-3 files, language server features which involve multiple files, like 'go to definition', do not work properly. That is because ntt only...

This PR adds initial support for inlay hints (only textDocument/inlayHint method) for function and template calls. Fixes #701.

This is a new feature added in LSP 3.17. https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_inlayHint Inlay hints allow the editor to display virtual text containing some additional information, for example parameter names: ![image](https://github.com/nokia/ntt/assets/6927259/1775dc6d-2a27-4c43-bd9a-4a68a5e8ca58) TTCN3 supports...

The possible values of an enumeration do not need to be represented by their own runtime-object type. They actually are just "value constraints", which can be modeled as a set-template...

**Describe the bug** Some tests fail on Windows machines, because tests expect linux-style path separators. It might a good idea to add a Windows-image to your GitHub Actions Tests workflow....

bug
good first issue

The parameters file stores test specific configuration in a central location. With many test specific configurations, this file can become large and unwieldy. Allowing test specific configurations inside testcase case...

Adding required import statements is something, which can be done automatically. With this feature you nether forget the proper imports again and can focus on writing tests. **Proposal** When the...

enum2int(in Enumerated_type inpar) return integer This function accepts an enumerated value and returns the integer value associated to the enumerated value. The actual parameter passed to inpar always shall be...