added more symbol table functions

This commit is contained in:
Partho Bhattacharya
2025-02-26 11:58:46 -05:00
parent 987a086dae
commit 38b73bd551
7 changed files with 40 additions and 7 deletions

View File

@ -17,11 +17,11 @@ typedef struct TableNode{
}TableNode;
typedef struct SymbolTable{
TableNode* entries;
struct SymbolTable* Parent_Scope;
struct ListOfTable* Children_Scope;
int Line_Number;
int Column_Number;
TableNode* entries;
struct SymbolTable* Parent_Scope;
struct ListOfTable* Children_Scope;
int Line_Number;
int Column_Number;
}SymbolTable;