Created base for type section parsing

This commit is contained in:
Sasha Koshka
2022-08-18 17:39:19 -04:00
parent bc9beb0317
commit 5c2a7aeb07
3 changed files with 17 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ type SyntaxTree struct {
author string
requires []string
typeSections map[string] *TypeSection
dataSections map[string] *DataSection
}