summary refs log tree commit diff stats
path: root/nimsuggest/tests/tv3_globalSymbols.nim
Commit message (Collapse)AuthorAgeFilesLines
* + show the inferred exception list (as part of the type) for functions that ↵Nikolay Nikolov2024-01-151-4/+4
| | | | don't have an explicit `.raises` pragma (#23193)
* 'lock levels' are deprecated, now a noop (#20539)ringabout2022-10-111-4/+4
| | | | | * 'lock levels' are deprecated, now a noop * fixes tests
* Fix/improve handling of forward declarations in nimsuggest (#20493)Ivan Yonchovski2022-10-061-0/+14
* Fix/improve handling of forward declarations in nimsuggest - ideUse now works fine when invoked on the implementation - implemented ideDeclaration to make cover lsp feature textDocument/declaration - fixed performance issue related to deduplicating symbols. Now the deduplication happens after the symbols are filtered. As a alternative we might change the way cached symbols are stored(e. g. use set). - I also fixed the way globalSymbols work. Now it will sort the responses based on the match location to make sure that the results are sorted in user friendly way. * Update nimsuggest/nimsuggest.nim Co-authored-by: Andreas Rumpf <rumpf_a@web.de> Co-authored-by: Andreas Rumpf <rumpf_a@web.de>