IR passed test, but bugs may remain

This commit is contained in:
2024-08-23 15:50:59 +00:00
parent 1df264ed77
commit 8781d58776
3 changed files with 17 additions and 9 deletions

View File

@ -462,6 +462,7 @@ void ASTSemanticCheckVisitor::ActuralVisit(IDExpr_ASTNode *node) {
// TODO: Implement this method
// TODO: process type
node->expr_type_info = node->current_scope->fetch_varaible(node->id);
node->cached_var_info = node->current_scope->fetch_variable_for_IR(node->id);
node->assignable = true;
}