assign, return exp val

This commit is contained in:
Vu Tuan Minh
2025-04-07 15:02:10 +02:00
parent 7076633d6a
commit deafaa26fc
7 changed files with 54 additions and 27 deletions

View File

@@ -157,6 +157,11 @@ public class toLLVM_Visitor implements ProgramVisitor<SymTable,ProgramLLVMImpl>
return new VoidLLVMImpl();
}
@Override
public InstrOrVal visitVar(VarImp e, SymTable h) {
return new InstrOrVal(null, null);
}
}