Merge pull request #4028 from Kelimion/fix-4026

Fix crash if referencing import "aliased" in other file.
This commit is contained in:
gingerBill
2024-08-05 16:57:58 +01:00
committed by GitHub
+8
View File
@@ -5158,6 +5158,14 @@ gb_internal Entity *check_selector(CheckerContext *c, Operand *operand, Ast *nod
Scope *import_scope = e->ImportName.scope;
String entity_name = selector->Ident.token.string;
if (import_scope == nullptr) {
ERROR_BLOCK();
error(node, "'%.*s' is not imported in this file, '%.*s' is unavailable", LIT(import_name), LIT(entity_name));
operand->mode = Addressing_Invalid;
operand->expr = node;
return nullptr;
}
check_op_expr = false;
entity = scope_lookup_current(import_scope, entity_name);
bool allow_builtin = false;