aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Move proc symbol procs to symbol fileBrad Lewis2025-07-153-39/+39
| | |
| * | Resolve hover for procedure parameter namesBrad Lewis2025-07-153-22/+79
|/ /
* | Merge pull request #749 from BradLewis/fix/proc-implicit-selectorDanielGavin2025-07-153-2/+38
|\ \ | | | | | | Correctly resolve proc param type
| * | Correctly resolve proc param typeBrad Lewis2025-07-153-2/+38
|/ /
* | Merge pull request #747 from BradLewis/improve-resolving-struct-fieldsDanielGavin2025-07-155-2/+173
|\ \ | | | | | | Improve finding which element to rename/find references to in struct field types
| * | Improve finding which element to rename/find references to in struct field typesBrad Lewis2025-07-145-2/+173
| | |
* | | Merge pull request #746 from ↵DanielGavin2025-07-151-31/+36
|\ \ \ | |/ / |/| | | | | | | | BradLewis/fix/issue-resolving-enumerated-array-field Fix/issue resolving enumerated array field
| * | Ensure index is not -1 before accessing it from the typesBrad Lewis2025-07-141-1/+1
| | |
| * | Fix issue with field_value not necessarily being an ident with invalidBrad Lewis2025-07-141-30/+35
|/ / | | | | | | code
* | Merge pull request #745 from BradLewis/fix/builtin-pathDanielGavin2025-07-141-2/+2
|\ \ | | | | | | Fix incorrect builtin path variable
| * | Fix incorrect builtin path variableBrad Lewis2025-07-141-2/+2
|/ /
* | Merge pull request #743 from BradLewis/fix/keywords-broke-stuffDanielGavin2025-07-132-38/+99
|\ \ | | | | | | Use a separate list of keywords for the documentation to not break analysis elsewhere
| * | Use a separate list of keywords for the documentation to not break analysis ↵Brad Lewis2025-07-132-38/+99
|/ / | | | | | | elsewhere
* | Merge pull request #740 from BradLewis/fix/comparison-binary-exprDanielGavin2025-07-132-0/+33
|\ \ | | | | | | Fix issue resolving comparison binary expr
| * | Fix issue resolving comparison binary exprBrad Lewis2025-07-132-0/+33
| | |
* | | Merge pull request #741 from BradLewis/fix/remove-where-clause-intrinsicsDanielGavin2025-07-131-1/+1
|\ \ \ | |/ / |/| | Remove where clause from intrinsic
| * | Remove where clause from intrinsicBrad Lewis2025-07-131-1/+1
|/ /
* | Merge pull request #739 from FourteenBrush/patch-1DanielGavin2025-07-131-0/+4
|\ \ | | | | | | Backport `intrinsics.type_enum_is_contiguous` (https://github.com/odi…
| * | Backport `intrinsics.type_enum_is_contiguous` ↵FourteenBrush2025-07-131-0/+4
| | | | | | | | | | | | (https://github.com/odin-lang/Odin/pull/5455)
* | | Merge pull request #738 from BradLewis/feat/struct-field-hover-improvementsDanielGavin2025-07-136-113/+420
|\ \ \ | |/ / |/| | Show docs and comments on struct field hover
| * | Add corrections due to odin parser updatesBrad Lewis2025-07-121-39/+48
| | |
| * | Update all short signatures to be consistent across typesBrad Lewis2025-07-125-54/+300
| | |
| * | Add comments when hovering basic struct fields and no longer show the ↵Brad Lewis2025-07-124-23/+75
|/ / | | | | | | underlying type
* | Merge pull request #736 from ↵DanielGavin2025-07-112-1/+72
|\ \ | | | | | | | | | | | | BradLewis/fix/overload-completion-strings-from-multiple-packages Fix issue resolving overloaded procs with strings
| * | Fix issue resolving overloaded proc when the string passed in came from a ↵Brad Lewis2025-07-102-1/+72
|/ / | | | | | | different package to the overloaded proc
* | Merge pull request #734 from BradLewis/fix/enum-completion-infoDanielGavin2025-07-102-0/+25
|\ \ | | | | | | Add enum type to completion detail
| * | Add enum type to completion detailBrad Lewis2025-07-092-0/+25
|/ /
* | Merge pull request #731 from bangbangsheshotmedown/patch-1DanielGavin2025-07-091-1/+1
|\ \ | | | | | | Support alternate odin folder name for the c.odin doc hack
| * | Support alternate folder namesbangbangsheshotmedown2025-07-081-1/+1
| | |
* | | Merge pull request #729 from BradLewis/feat/reference-improvementsDanielGavin2025-07-095-102/+355
|\ \ \ | |/ / |/| | Further reference improvements
| * | Fix issue resolving comp literals with no specified typeBrad Lewis2025-07-074-4/+114
| | |
| * | Fix issue resolving references for implicit selectorsBrad Lewis2025-07-072-18/+84
| | |
| * | Correctly resolve references when returning a structBrad Lewis2025-07-072-92/+169
|/ /
* | Merge pull request #728 from BradLewis/feat/reference-improvementsDanielGavin2025-07-0710-74/+221
|\ \ | | | | | | Small improvements to references/renaming on struct fields and union completions with pointers
| * | Fix issue resolving struct fields when constructed in a return statementBrad Lewis2025-07-072-27/+57
| | |
| * | Fix issue with structs and enum variants with the same names colliding with ↵Brad Lewis2025-07-074-11/+52
| | | | | | | | | | | | references
| * | Correctly filter used unions when ptrBrad Lewis2025-07-062-4/+41
| | |
| * | Improvements for references and renaming of struct pointer fieldsBrad Lewis2025-07-064-32/+71
|/ /
* | Merge pull request #725 from connnnal/using-by-ptrDanielGavin2025-07-072-5/+72
|\ \ | | | | | | Using by ptr completion
| * | Oopsconnnnal2025-07-061-5/+0
| | |
| * | Nitsconnnnal2025-07-062-1/+1
| | |
| * | Follow ptr nodes before expanding usingsconnnnal2025-07-061-5/+10
| | |
| * | Using-by-ptr testsconnnnal2025-07-061-0/+67
| | |
* | | Merge branch 'BradLewis-feat/reference-improvements'DanielGavin2025-07-077-53/+171
|\ \ \
| * | | Merge branch 'feat/reference-improvements' of ↵DanielGavin2025-07-077-53/+171
|/| | | | | | | | | | | | | | | https://github.com/BradLewis/ols into BradLewis-feat/reference-improvements
| * | | Correctly resolve struct fields that are immediately accessed from a proc returnBrad Lewis2025-07-064-34/+126
| | | |
| * | | Ensure uris are attached to every symbol for improved referenceBrad Lewis2025-07-065-9/+35
| |/ / | | | | | | | | | resolution
* | | Merge pull request #724 from BradLewis/feat/enumerated-arrayDanielGavin2025-07-0710-54/+367
|\ \ \ | | | | | | | | Improvements to resolving enumerated arrays
| * | | Remove used switch cases for unionsBrad Lewis2025-07-052-0/+33
| | | |
| * | | Correctly handle hover, rename and references for enumerated arraysBrad Lewis2025-07-056-16/+116
| | | |