diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-21 09:08:31 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-21 09:08:31 -0400 |
| commit | ee22998e6e8beec8e3926c9c6b1a0dbd99b3d6db (patch) | |
| tree | 6c894a1f39ec66c631d67b4f8519e620c06638bd /src/server/documentation.odin | |
| parent | 5bdd01db885abb3df58a2ed9501f418fc58e7ee8 (diff) | |
Improve hover for global constant variables
Diffstat (limited to 'src/server/documentation.odin')
| -rw-r--r-- | src/server/documentation.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/documentation.odin b/src/server/documentation.odin index fda1050..47c6d7e 100644 --- a/src/server/documentation.odin +++ b/src/server/documentation.odin @@ -853,7 +853,7 @@ construct_symbol_information :: proc(ast_context: ^AstContext, symbol: Symbol) - strings.write_string(&sb, " : ") write_node(&sb, ast_context, symbol.value_expr, "", 1, false) return strings.to_string(sb) - } else if _, ok := symbol.value_expr.derived.(^ast.Comp_Lit); ok { + } else if .Variable in symbol.flags { strings.write_string(&sb, " :: ") write_node(&sb, ast_context, symbol.value_expr, "", 1, false) return strings.to_string(sb) |