diff --git a/symbol_table.c b/symbol_table.c index 52ecf2b..e87ebd8 100644 --- a/symbol_table.c +++ b/symbol_table.c @@ -1,14 +1,7 @@ -//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 Linked List of all the child scopes -//T #include #include #include -//Tail of Linked List points to a List of child scopes - - #include "symbol_table.h" SymbolTable* CreateScope(SymbolTable* ParentScope, int Line, int Column){