diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-05-22 20:59:53 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2025-05-22 20:59:53 +0200 |
| commit | f9980e385ffb2ae0b2cefd6dda239d547ef1fb05 (patch) | |
| tree | 0d6b9f5ca66b6b8c2f6bb885fd0eccd60f501213 /src/server/hover.odin | |
| parent | 07ea39ecdcf02dba84c82d90b028055463f6562c (diff) | |
Fix issue with setting the ast_context.call in hover and file resolve
Diffstat (limited to 'src/server/hover.odin')
| -rw-r--r-- | src/server/hover.odin | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/server/hover.odin b/src/server/hover.odin index 2edc331..9e4e20c 100644 --- a/src/server/hover.odin +++ b/src/server/hover.odin @@ -250,7 +250,9 @@ get_hover_information :: proc(document: ^Document, position: common.Position) -> if position_context.call != nil { if call, ok := position_context.call.derived.(^ast.Call_Expr); ok { - ast_context.call = call + if !position_in_exprs(call.args, position_context.position) { + ast_context.call = call + } } } |