diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-08 16:01:23 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-08 16:01:23 -0400 |
| commit | 6a9cef08d2fb8fba3edda47e57a82c2444516bf7 (patch) | |
| tree | abee1316f04ec89495672bf2d4d9d923324f4126 /src/server/completion.odin | |
| parent | a42400e0c9f1471ec27454476f6fe6c19dc95242 (diff) | |
Resolve procedure overloading from external packages and improve resolution
Diffstat (limited to 'src/server/completion.odin')
| -rw-r--r-- | src/server/completion.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/completion.odin b/src/server/completion.odin index 8d61e3e..c554841 100644 --- a/src/server/completion.odin +++ b/src/server/completion.odin @@ -73,6 +73,7 @@ get_completion_list :: proc( document.uri.uri, document.fullpath, ) + ast_context.position_hint = position_context.hint get_globals(document.ast, &ast_context) |