index
:
odin/ols.git
action-organizeImports
ci-changes
fix-ci
fix-stale-error
index-caching
inlay-range
make-ci-work
master
objc-branch
objc-fixes
poly
remove-unused-imports
rename
semantic_tokens_range
test
uri-fix-diagnostics
use-recursion-map
Language server for Odin
Daniel Gavin
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
server
/
analysis.odin
Commit message (
Collapse
)
Author
Age
Files
Lines
...
*
Add Or_Branch_Expr to get_document_position
DanielGavin
2024-05-05
1
-27
/
+41
|
*
support bit_fields
Laytan Laats
2024-04-15
1
-5
/
+212
|
|
|
|
|
|
They are pretty similar to structs (just a bit simpler) so I piggy backed of that a lot here, added some basic tests and tested the formatting myself.
*
Merge pull request #337 from DanielGavin/objc-fixes
DanielGavin
2024-04-09
1
-10
/
+20
|
\
|
|
|
|
Objc fixes
|
*
Fix issues with objc completion and hover
DanielGavin
2024-04-06
1
-10
/
+20
|
|
*
|
changed condition in analysis.odin that was affecting type inference in for ↵
Isaiah Paget
2024-04-07
1
-2
/
+2
|
|
|
|
|
|
|
|
range stmt
*
|
Merge remote-tracking branch 'origin' into no_type_inference_bug
Isaiah Paget
2024-04-07
1
-2
/
+2
|
\
|
|
*
Fix issues with -> not being parsed correctly with call expression
DanielGavin
2024-04-06
1
-2
/
+2
|
|
*
|
fixed no type inference using for in loop
Isaiah Paget
2024-04-06
1
-1
/
+1
|
/
*
Support relative type
DanielGavin
2024-03-26
1
-2
/
+1
|
*
Fix issues with bitsets in procedures not completing correctly
DanielGavin
2024-03-18
1
-7
/
+9
|
*
Support completion and gotos for comp literals in procs
DanielGavin
2024-03-12
1
-4
/
+37
|
*
Automatically add shared collection.
DanielGavin
2024-02-22
1
-1
/
+1
|
*
Change the template of vscode extension for `ols.json`
DanielGavin
2024-02-22
1
-0
/
+1
|
*
handle the change from core:runtime to base:runtime
poly
DanielGavin
2024-02-03
1
-10
/
+10
|
*
Forgot to set ast_context.call.
DanielGavin
2024-02-01
1
-2
/
+12
|
*
Check the builtin before checking the runtime
DanielGavin
2024-01-28
1
-12
/
+23
|
*
Handle parser not returning valid global decls.
DanielGavin
2024-01-27
1
-9
/
+13
|
*
Remember to save the old call stack in ast_context.
DanielGavin
2023-12-29
1
-0
/
+10
|
*
Merge branch 'master' into poly
DanielGavin
2023-12-29
1
-2
/
+4
|
\
|
*
default case should use internal_resolve_type_expression to prevent ↵
DanielGavin
2023-12-29
1
-2
/
+4
|
|
|
|
|
|
|
|
stackoverflows
*
|
New poly resolve system
DanielGavin
2023-12-28
1
-552
/
+16
|
/
*
Fix issue with variables assigning in global space to procedures.
DanielGavin
2023-12-17
1
-2
/
+17
|
*
Fix issue with not using builtin symbols when in another package.
DanielGavin
2023-12-14
1
-8
/
+5
|
*
Procedure types do no longer insert `()`
DanielGavin
2023-11-11
1
-7
/
+13
|
*
Have index expr return boolean as second result
DanielGavin
2023-09-26
1
-6
/
+10
|
*
Fix not writing the bit_set correcty in hover and completion
DanielGavin
2023-09-17
1
-1
/
+9
|
*
Support new changes in Odin
DanielGavin
2023-09-14
1
-3
/
+1
|
*
Fix issues with union switch and also now using the renamed package name
DanielGavin
2023-09-01
1
-8
/
+26
|
*
Add support for generics in struct that use arrays
DanielGavin
2023-09-01
1
-19
/
+57
|
*
Fix issues with not being able to resolve non mutable functions in other ↵
DanielGavin
2023-08-15
1
-13
/
+41
|
|
|
|
functions.
*
Add support for tag stmts.
DanielGavin
2023-08-13
1
-2
/
+2
|
*
Fix issue where unresolved symbol didn't get the pkg updated.
DanielGavin
2023-07-26
1
-2
/
+1
|
*
unwrap ident in switch type
DanielGavin
2023-07-23
1
-1
/
+1
|
*
Fix inlay hints for -> calls, and also fix reference in for in range.
DanielGavin
2023-07-17
1
-9
/
+23
|
*
remember to save the symbol value when resolving the unresolved symbol
DanielGavin
2023-07-09
1
-0
/
+1
|
*
Add hack for type_of
DanielGavin
2023-07-05
1
-9
/
+20
|
*
Make sure that sliced expressions return slices.
Daniel Gavin
2023-06-18
1
-1
/
+30
|
*
Add support for gotos on comp literal fields
DanielGavin
2023-05-18
1
-24
/
+90
|
*
Have to wrap the pointers back again in generic functions
DanielGavin
2023-04-02
1
-2
/
+23
|
*
reference also needs to look in workspace folder
DanielGavin
2023-04-02
1
-1
/
+1
|
*
Fix issue where we incorrectly used the document global ast instead of the ↵
DanielGavin
2023-03-25
1
-4
/
+1
|
|
|
|
indexer
*
remove indexer notification when odin builtin packages error out
DanielGavin
2023-03-11
1
-36
/
+0
|
*
Add support for completion with usings and compound literals
DanielGavin
2023-03-08
1
-12
/
+5
|
*
Fix enum inference from casting
DanielGavin
2023-03-07
1
-0
/
+3
|
*
Add comp_lit and value decl infering for enums
DanielGavin
2023-03-07
1
-0
/
+69
|
*
Add more enum gotos
DanielGavin
2023-03-06
1
-10
/
+69
|
*
Start adding support to gotos for enums
DanielGavin
2023-03-06
1
-40
/
+122
|
*
use internal resolve in resolve_function_overload to prevent recursion.
objc-branch
DanielGavin
2023-02-25
1
-2
/
+4
|
*
Fixed error where `->` with call expression couldn't be resolved
DanielGavin
2023-01-24
1
-1
/
+19
|
*
More accurately auto complete ObjC procedures
Lucas Perlind
2023-01-24
1
-0
/
+6
|
[prev]
[next]