diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-12 13:34:12 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-12 13:34:12 -0400 |
| commit | 82c8a0b2cb1373afeb9f87339cc3aaccdffb31ff (patch) | |
| tree | 156ef3abf4ab47c82e154e20b7c5bc19ba3df0e6 /src/server/symbol.odin | |
| parent | 3499fc72369763f6b20e39844a274c32e05f9d80 (diff) | |
Add comments when hovering basic struct fields and no longer show the underlying type
Diffstat (limited to 'src/server/symbol.odin')
| -rw-r--r-- | src/server/symbol.odin | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/server/symbol.odin b/src/server/symbol.odin index 5ca9c17..08a6788 100644 --- a/src/server/symbol.odin +++ b/src/server/symbol.odin @@ -19,11 +19,6 @@ SymbolAndNode :: struct { node: ^ast.Node, } -UsingInfo :: struct { - from_index: int, - is_using: bool, -} - SymbolStructValue :: struct { names: []string, ranges: []common.Range, |