Removed comments to make symbole table easyer to read.

This commit is contained in:
Meyer Simon
2025-02-23 12:21:28 -05:00
parent 9137b8f862
commit d6033e9168

View File

@ -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 <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
//Tail of Linked List points to a List of child scopes
#include "symbol_table.h" #include "symbol_table.h"
SymbolTable* CreateScope(SymbolTable* ParentScope, int Line, int Column){ SymbolTable* CreateScope(SymbolTable* ParentScope, int Line, int Column){