Merge branch 'Dev' into Sprint2-Symbol_Table_Setup-FE-t#32

This commit is contained in:
Moroseui
2025-02-21 12:57:01 -05:00
committed by GitHub
6 changed files with 160 additions and 79 deletions

View File

@ -1,7 +1,9 @@
//Defining a symbol table
//Using a Linked List Structure. Head of linked List points to parent scope (if one exists)
//Tail of Linked List points to a List of child scopes
#include "symbol_table.h"
SymbolTable* CreateScope(SymbolTable* ParentScope, int Line, int Column){