aboutsummaryrefslogtreecommitdiff
path: root/src/server/symbol.odin
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-06-10 21:53:15 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-06-10 22:20:36 -0400
commit2a284808585aa062932e5bf162e4facfd5b8cee2 (patch)
treec7bcd770f31d0c95da94b52a2c7587a5524ece98 /src/server/symbol.odin
parent3f089f4d757e2a705056eb331c74442ab48862aa (diff)
Add struct field type to hover information
Diffstat (limited to 'src/server/symbol.odin')
-rw-r--r--src/server/symbol.odin2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/symbol.odin b/src/server/symbol.odin
index 8a3f4ab..7286028 100644
--- a/src/server/symbol.odin
+++ b/src/server/symbol.odin
@@ -162,6 +162,8 @@ Symbol :: struct {
doc: string,
signature: string, //type signature
type: SymbolType,
+ type_pkg: string,
+ type_name: string,
value: SymbolValue,
pointers: int, //how many `^` are applied to the symbol
flags: SymbolFlags,