diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-27 21:05:50 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-29 15:49:12 -0400 |
| commit | 65adde811fedf1fd3054a736e9d2faf63fcfad31 (patch) | |
| tree | d913a46215a374ceaf723c067add2c3b1e92d814 /src/server/documentation.odin | |
| parent | ca1e78574de49aa5b73df422736cdf4b0f093ecd (diff) | |
Update signature information
Diffstat (limited to 'src/server/documentation.odin')
| -rw-r--r-- | src/server/documentation.odin | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/server/documentation.odin b/src/server/documentation.odin index 9767a9d..9d72043 100644 --- a/src/server/documentation.odin +++ b/src/server/documentation.odin @@ -339,7 +339,7 @@ get_short_signature :: proc(ast_context: ^AstContext, symbol: Symbol) -> string append_type_information(&sb, ast_context, symbol, pointer_prefix) strings.write_string(&sb, " :: ") } - write_procedure_symbol_signature(&sb, v, detailed_signature=false) + write_procedure_symbol_signature(&sb, v, detailed_signature=true) return strings.to_string(sb) case SymbolAggregateValue: return "proc (..)" @@ -686,7 +686,6 @@ concatenate_raw_symbol_information :: proc(ast_context: ^AstContext, symbol: Sym symbol.name, symbol.signature, symbol.type, - symbol.comment, ) } @@ -696,7 +695,6 @@ concatenate_raw_string_information :: proc( name: string, signature: string, type: SymbolType, - comment: string, ) -> string { pkg := path.base(pkg, false, context.temp_allocator) |