print et read fini !

This commit is contained in:
Rochas
2025-04-29 00:50:56 +02:00
parent 291bc96079
commit bd56995d63
8 changed files with 70 additions and 24 deletions

View File

@@ -13,7 +13,7 @@ public class SymTable {
private PStack<PMap<String,ValueVarMap>> varMap;
private PMap<String,ValueFunMap> functionsMap;
private int[] id ; //id partagé entre toute les symTable, [0] : idVar, [1] : idLabel, [2] : idGlobalVar
private ArrayList<DeclarGlobalLLVMImp> declarationsGlobal;
private ArrayList<DeclarGlobalLLVMImp> declarationsGlobal; //aussi partagé entre toute les symTable (.fmt pour les print et scan)
public SymTable(){
this.id = new int[3];