diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-27 14:59:02 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-27 14:59:02 -0400 |
| commit | 5e3467dfd177531903cdd6b4b2d2fedc187e2b3d (patch) | |
| tree | 410b9279d8bbe760306b7e18edb6a87b28501b84 /src/server | |
| parent | 710b9a8e0ef88f970bf67226dfc0b7d33b042a43 (diff) | |
Ensure ast_context is reset after attempt to handle an implicit selector completion in a function call
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/completion.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/completion.odin b/src/server/completion.odin index e04963f..8e62e15 100644 --- a/src/server/completion.odin +++ b/src/server/completion.odin @@ -1222,6 +1222,8 @@ get_implicit_completion :: proc( } } } + + reset_ast_context(ast_context) } if position_context.index != nil { |