aboutsummaryrefslogtreecommitdiff
path: root/src/server/symbol.odin
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-12 13:34:12 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-12 13:34:12 -0400
commit82c8a0b2cb1373afeb9f87339cc3aaccdffb31ff (patch)
tree156ef3abf4ab47c82e154e20b7c5bc19ba3df0e6 /src/server/symbol.odin
parent3499fc72369763f6b20e39844a274c32e05f9d80 (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.odin5
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,