diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-31 20:19:26 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-07-31 20:19:26 -0400 |
| commit | d6bfdd611ccf122117ef25e40b0f104b3f923de4 (patch) | |
| tree | a2552fe11ee7e0716323836cc1253aa95817bd47 /src/server/symbol.odin | |
| parent | 56447447ddb370ea74d66cf27ea5395b432a7700 (diff) | |
Resolve objc methods before expanding usings to fix issues with hover documentation
Diffstat (limited to 'src/server/symbol.odin')
| -rw-r--r-- | src/server/symbol.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/symbol.odin b/src/server/symbol.odin index d933819..ad16339 100644 --- a/src/server/symbol.odin +++ b/src/server/symbol.odin @@ -361,8 +361,8 @@ write_struct_type :: proc( resolve_poly_struct(ast_context, b, v.poly_params) } - expand_usings(ast_context, b) expand_objc(ast_context, b) + expand_usings(ast_context, b) } write_symbol_struct_value :: proc( |