diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2026-01-24 09:27:19 +1100 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2026-01-24 09:27:19 +1100 |
| commit | 00955b4ddf08c2a87a53af72b25c0108f862d95e (patch) | |
| tree | 9f80c07e33cf7beba915511c47c6b2c1cefece02 /src/server/symbol.odin | |
| parent | e21db4a48e04e558e0aa3a46e0bd7668168714e1 (diff) | |
Correctly resolve hover info for poly types in where clauses for procs
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 96c83ed..14e231c 100644 --- a/src/server/symbol.odin +++ b/src/server/symbol.odin @@ -212,6 +212,7 @@ SymbolFlag :: enum { SoaPointer, Simd, Parameter, //If the symbol is a procedure argument + PolyType, } SymbolFlags :: bit_set[SymbolFlag] |