diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-11-05 20:34:30 -0500 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-11-05 20:44:09 -0500 |
| commit | 2845fac4107f986d6fc598f49375cbe1cbadb295 (patch) | |
| tree | 046500c15239bc577b9185bf71ebe4459c62573b /src/server | |
| parent | 00a283c5d5305234a28f3eab3a0d1f150f8782c7 (diff) | |
Fix resolving array selectors with local types
Diffstat (limited to 'src/server')
| -rw-r--r-- | src/server/analysis.odin | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/analysis.odin b/src/server/analysis.odin index 9d93f39..1b14497 100644 --- a/src/server/analysis.odin +++ b/src/server/analysis.odin @@ -1488,8 +1488,6 @@ resolve_soa_selector_field :: proc( resolve_selector_expression :: proc(ast_context: ^AstContext, node: ^ast.Selector_Expr) -> (Symbol, bool) { selector := Symbol{} if ok := internal_resolve_type_expression(ast_context, node.expr, &selector); ok { - ast_context.use_locals = false - set_ast_package_from_symbol_scoped(ast_context, selector) symbol := Symbol{} |