aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Correctly find references for type switch tagsBrad Lewis2025-07-303-0/+33
| | | |
* | | | Merge pull request #814 from BradLewis/fix/clone-comment-collectorBradley Lewis2025-07-311-1/+1
|\ \ \ \ | | | | | | | | | | Missing comment clone in collector
| * | | | Missing comment clone in collectorBrad Lewis2025-07-311-1/+1
|/ / / /
* | | | Merge pull request #813 from BradLewis/fix/memory-corruptionBradley Lewis2025-07-311-3/+2
|\ \ \ \ | | | | | | | | | | Remove collector unique string indexing for comments and docs
| * | | | Remove collector unique string indexing for comments and docsBrad Lewis2025-07-311-3/+2
|/ / / /
* | | | Merge pull request #812 from BradLewis/fix/len-docsBradley Lewis2025-07-301-0/+3
|\ \ \ \ | |/ / / |/| | | Remove irrelevant comment from len docs
| * | | Remove irrelevant comment from len docsBrad Lewis2025-07-301-0/+3
|/ / /
* | | Merge pull request #810 from BradLewis/fix/dont-override-symbol-docsBradley Lewis2025-07-303-13/+2
|\ \ \ | | | | | | | | Don't override the docs on the symbols to avoid memory corruption issues
| * | | Don't override the docs on the symbols to avoid memory corruption issuesBrad Lewis2025-07-303-13/+2
|/ / /
* | | Merge pull request #809 from BradLewis/fix/only-limit-identifier-completionsBradley Lewis2025-07-301-2/+6
|\ \ \ | | | | | | | | Only limit identifier completions to maintain consistency from before the changes
| * | | Only limit identifier completions to maintain consistency from before the ↵Brad Lewis2025-07-301-2/+6
| |/ / | | | | | | | | | changes
* | | Merge pull request #808 from BradLewis/fix/handle-byte-u8-aliasBradley Lewis2025-07-303-1/+45
|\ \ \ | |/ / |/| | Correctly handle the alias of `u8` and `byte`
| * | Correctly handle the alias of `u8` and `byte`Brad Lewis2025-07-303-1/+45
|/ /
* | Merge pull request #806 from BradLewis/feat/add-poly-params-union-documentationBradley Lewis2025-07-309-53/+206
|\ \ | | | | | | Add parapoly information to union documentation
| * | Add parapoly information to union documentationBrad Lewis2025-07-309-53/+206
|/ /
* | Merge pull request #805 from BradLewis/fix/resolve-using-typesBradley Lewis2025-07-302-1/+40
|\ \ | | | | | | Fix issue looking up using package when resolving types
| * | Fix issue looking up using package when resolving typesBrad Lewis2025-07-302-1/+40
|/ /
* | Merge pull request #804 from BradLewis/fix/switch-initialiserBradley Lewis2025-07-302-0/+24
|\ \ | | | | | | Resolve switch statement init for locals
| * | Resolve switch statement init for localsBrad Lewis2025-07-302-0/+24
|/ /
* | Merge pull request #803 from BradLewis/fix/issues-due-to-mergeBradley Lewis2025-07-304-10/+10
|\ \ | | | | | | Fix issues due to merge
| * | Fix issues due to mergeBrad Lewis2025-07-304-10/+10
|/ /
* | Merge pull request #800 from BradLewis/fix/constructing-docs-methodsBradley Lewis2025-07-303-14/+15
|\ \ | | | | | | Fix issue with constructing docs on indexed symbols
| * | Fix issue with constructing docs on indexed symbolsBrad Lewis2025-07-293-15/+15
| | |
* | | Merge pull request #792 from BradLewis/feat/rework-documentationDanielGavin2025-07-3013-701/+641
|\ \ \ | |/ / |/| | Improve completion processing
| * | Correct test after mergingBrad Lewis2025-07-291-1/+1
| | |
| * | Use markdown correctly when providing the completion item and correctly ↵Brad Lewis2025-07-292-27/+15
| | | | | | | | | | | | process symbols from packages
| * | Update tests after merging changesBrad Lewis2025-07-291-2/+2
| | |
| * | Update signature informationBrad Lewis2025-07-294-15/+20
| | |
| * | Implement label details using new methodBrad Lewis2025-07-294-108/+76
| | |
| * | Fix completion and hover tests with documentation changesBrad Lewis2025-07-298-225/+222
| | |
| * | Finish converting completions to use the completion resultsBrad Lewis2025-07-291-125/+124
| | |
| * | Update implicit selector completionsBrad Lewis2025-07-291-66/+48
| | |
| * | Update selector completionsBrad Lewis2025-07-292-82/+82
| | |
| * | Update comp lit completionsBrad Lewis2025-07-291-29/+10
| | |
| * | First pass at improving identifier completionsBrad Lewis2025-07-294-59/+88
| | |
| * | Create constructors for field symbolsBrad Lewis2025-07-295-62/+53
|/ /
* | Merge pull request #798 from BradLewis/fix/handle-compile-time-call-exprBradley Lewis2025-07-282-1/+6
|\ \ | | | | | | Handle semantic token for const global variables returned from functions
| * | Handle semantic token for const global variables returned from functionsBrad Lewis2025-07-282-1/+6
|/ /
* | Merge pull request #797 from BradLewis/fix/further-semantic-token-improvementsBradley Lewis2025-07-282-13/+34
|\ \ | | | | | | Correctly resolve semantic tokens for basic literals and casts
| * | Correctly resolve semantic tokens for basic literals and castsBrad Lewis2025-07-282-13/+34
| | |
* | | Merge pull request #795 from BradLewis/fix/using-statementsBradley Lewis2025-07-282-9/+58
|\ \ \ | | | | | | | | Correctly resolving using statements with aliases
| * | | Correctly resolving using statements with aliasesBrad Lewis2025-07-282-9/+58
| |/ /
* | | Merge pull request #794 from BradLewis/fix/flaky-testsBradley Lewis2025-07-281-0/+2
|\ \ \ | |/ / |/| | Make `file_resolve_cache` and `build_cache` thread_local to stop isses with tests
| * | Make `file_resolve_cache` and `build_cache` thread_local to stop issues with ↵Brad Lewis2025-07-281-0/+2
|/ / | | | | | | tests
* | Merge pull request #791 from BradLewis/fix/re-export-docs-if-not-overriddenBradley Lewis2025-07-272-2/+66
|\ \ | | | | | | Only override docs for re-exported items if there is new documentation on the when doing the export
| * | Only override docs for re-exported items if there is new documentation on ↵Brad Lewis2025-07-272-2/+66
| | | | | | | | | | | | the when doing the export
* | | Merge pull request #790 from BradLewis/fix/enum-global-arrayBradley Lewis2025-07-273-34/+65
|\ \ \ | |/ / |/| | Correctly resolve enum comp lits as part of arrays
| * | Ensure ast_context is reset after attempt to handle an implicit selector ↵Brad Lewis2025-07-272-0/+23
| | | | | | | | | | | | completion in a function call
| * | Correctly resolve enum comp lits as part of arraysBrad Lewis2025-07-272-34/+42
|/ /
* | Merge pull request #786 from BradLewis/fix/resolve-enum-explicit-typeBradley Lewis2025-07-262-0/+23
|\ \ | | | | | | Correctly resolve enum value_decl