diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-05 20:28:21 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-05 20:31:49 -0400 |
| commit | 62532c0c6e744c9065d7e2e3b03dfc808836a023 (patch) | |
| tree | 7386ce10d81f43e1a4b1d3fc205d131786a94d3f /src/server/hover.odin | |
| parent | b8028bb6a559cf20942703e58ac02ac0e89a46c5 (diff) | |
Correctly handle hover, rename and references for enumerated arrays
Diffstat (limited to 'src/server/hover.odin')
| -rw-r--r-- | src/server/hover.odin | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/server/hover.odin b/src/server/hover.odin index adf8556..7ced6c1 100644 --- a/src/server/hover.odin +++ b/src/server/hover.odin @@ -238,7 +238,6 @@ get_hover_information :: proc(document: ^Document, position: common.Position) -> } else if v, ok := comp_symbol.value.(SymbolBitFieldValue); ok { for name, i in v.names { if name == field.name { - log.info("here?") if symbol, ok := resolve_type_expression(&ast_context, v.types[i]); ok { symbol.name = name symbol.pkg = comp_symbol.name |