fixed header for this branch

This commit is contained in:
Partho
2025-04-04 21:40:13 -04:00
parent 391438a6bc
commit e2aa9e7c12

View File

@ -76,7 +76,8 @@ typedef enum {
TYPE_ALL_ELSE = 7,
TYPE_UNDEFINED = 8,
TYPE_RECORD = 9,
TYPE_ARRAY = 10
TYPE_ARRAY = 10,
TYPE_SYSTEM_DEFINED = 11
} types;
AdInfo *CreatePrimitiveInfo(int size);
@ -101,7 +102,7 @@ SymbolTable *CreateScope(SymbolTable *ParentScope, int Line, int Column);
SymbolTable *init(SymbolTable *start);
TableNode *populateTypeAndInfo(TableNode *tn, TableNode *type, AdInfo *info);
int getAdInfoType(TableNode *tn);
TableNode *CreateEntry(SymbolTable *table, TableNode *typeOf, char *id,
TableNode *CreateEntry(SymbolTable *table, int tag, TableNode *typeOf, char *id,
AdInfo *ad);
char *getType(TableNode *tn);
char *getName(TableNode *tn);