diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-10 21:53:15 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-06-10 22:20:36 -0400 |
| commit | 2a284808585aa062932e5bf162e4facfd5b8cee2 (patch) | |
| tree | c7bcd770f31d0c95da94b52a2c7587a5524ece98 /src/server/symbol.odin | |
| parent | 3f089f4d757e2a705056eb331c74442ab48862aa (diff) | |
Add struct field type to hover information
Diffstat (limited to 'src/server/symbol.odin')
| -rw-r--r-- | src/server/symbol.odin | 2 |
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, |