diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-26 21:39:29 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-29 15:49:11 -0400 |
| commit | 83d6bd2630fbcba45a3c912c4a141e4995def4f8 (patch) | |
| tree | 04c40ead41b257642a162e5cde7f4b2afbddf36b /src/server/symbol.odin | |
| parent | 7333f046381ee3e19a8935c797efca09a923fa14 (diff) | |
Fix completion and hover tests with documentation changes
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 e5705a2..0ead07f 100644 --- a/src/server/symbol.odin +++ b/src/server/symbol.odin @@ -787,7 +787,9 @@ construct_bit_field_field_symbol :: proc(symbol: ^Symbol, parent_name: string, v symbol.type = .Field symbol.doc = get_doc(value.docs[index], context.temp_allocator) symbol.comment = get_comment(value.comments[index]) + symbol.doc = construct_symbol_docs(symbol.doc, symbol.comment) symbol.signature = get_bit_field_field_signature(value, index) + //build_bit_field_field_documentation(symbol, value, index) } construct_enum_field_symbol :: proc(symbol: ^Symbol, value: SymbolEnumValue, index: int) { |