diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-19 20:10:50 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-22 18:48:36 -0400 |
| commit | dc8fdcb3d55d613dc71044e7a549b15b00e12cc7 (patch) | |
| tree | 952fa71105631f61758072c96a03873d578403ba /src/server/symbol.odin | |
| parent | ddd6485f6ea68e445ee893721b2696aa2ab91bc4 (diff) | |
Add proc attribute to hover information
Diffstat (limited to 'src/server/symbol.odin')
| -rw-r--r-- | src/server/symbol.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/symbol.odin b/src/server/symbol.odin index 3cff104..141d4d4 100644 --- a/src/server/symbol.odin +++ b/src/server/symbol.odin @@ -59,6 +59,7 @@ SymbolProcedureValue :: struct { diverging: bool, calling_convention: ast.Proc_Calling_Convention, tags: ast.Proc_Tags, + attributes: []^ast.Attribute, } SymbolProcedureGroupValue :: struct { |