commit 32ce8d36cfbccb4c7895f30b851f65a54058760c
parent 6f6c2b63b1dde987fb8d92d65b492360ca5640e6
Author: Lou Woell <lou.woell@posteo.de>
Date: Wed, 10 Sep 2025 17:45:45 +0200
fix import_members resolver
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/cmd/harehelper/find.ha b/cmd/harehelper/find.ha
@@ -84,8 +84,10 @@ fn find_uid (id: ast::ident, path: str) (void | ast::ident) = {
if (len(id) > 1) continue;
for (let s .. members) {
check = (s == id[0]);
- interned = true;
- break;
+ if (check) {
+ interned = true;
+ break;
+ };
};
case ast::import_wildcard =>
// todo check all symbols;