diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-07 15:30:22 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-07 15:34:51 -0400 |
| commit | 59d3d9efc70ec5530c52ac6a657c8778defd1819 (patch) | |
| tree | d1807e581e2b1bdfc1f798dc2c071c46169446be /src/server/hover.odin | |
| parent | 0673e745df404a5e526867c07a42ae049f43b816 (diff) | |
Improvement to resolving numeric binary expressions
Diffstat (limited to 'src/server/hover.odin')
| -rw-r--r-- | src/server/hover.odin | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/server/hover.odin b/src/server/hover.odin index 4941b87..960a3a2 100644 --- a/src/server/hover.odin +++ b/src/server/hover.odin @@ -18,22 +18,6 @@ import "src:common" write_hover_content :: proc(ast_context: ^AstContext, symbol: Symbol) -> MarkupContent { content: MarkupContent - - symbol := symbol - - if untyped, ok := symbol.value.(SymbolUntypedValue); ok { - switch untyped.type { - case .String: - symbol.signature = "string" - case .Bool: - symbol.signature = "bool" - case .Float: - symbol.signature = "float" - case .Integer: - symbol.signature = "int" - } - } - cat := construct_symbol_information(ast_context, symbol) doc := construct_symbol_docs(symbol) |