diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2024-06-04 22:15:41 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2024-06-04 22:15:41 +0200 |
| commit | b7abe27c51968d0a77f3eaf899de63e4c38bc129 (patch) | |
| tree | e8697ef1cfe8caa0d4f76382b41437c1bd1394c2 /src/server/analysis.odin | |
| parent | 5805fd0b688446eeb23528497972b9f934208f1a (diff) | |
Fix selector -> issues
Diffstat (limited to 'src/server/analysis.odin')
| -rw-r--r-- | src/server/analysis.odin | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/analysis.odin b/src/server/analysis.odin index 90cfd70..93ada47 100644 --- a/src/server/analysis.odin +++ b/src/server/analysis.odin @@ -5122,8 +5122,7 @@ get_document_position_node :: proc( case ^Selector_Call_Expr: if position_context.hint == .Definition || position_context.hint == .Hover || - position_context.hint == .SignatureHelp || - position_context.hint == .Completion { + position_context.hint == .SignatureHelp { position_context.selector = n.expr position_context.field = n.call position_context.selector_expr = cast(^Selector_Expr)node |