added offsets to record type structure

This commit is contained in:
Annie
2025-04-09 13:29:50 -04:00
parent d262bd9c39
commit d17e99758f

View File

@ -24,6 +24,8 @@ typedef struct {
typedef struct { typedef struct {
int numofelements; int numofelements;
struct SymbolTable *recordScope; struct SymbolTable *recordScope;
int totalsize;
int offsets[];
} record_info; } record_info;
typedef struct { typedef struct {