Face sections are actually ToString'd now

This commit is contained in:
Sasha Koshka 2022-08-23 22:25:21 -04:00
parent b0d4ecc83f
commit 1f88b54eaa
1 changed files with 5 additions and 0 deletions

View File

@ -61,6 +61,11 @@ func (tree *SyntaxTree) ToString (indent int) (output string) {
output += tree.enumSections[name].ToString(indent)
}
faceSectionKeys := sortMapKeysAlphabetically(tree.faceSections)
for _, name := range faceSectionKeys {
output += tree.faceSections[name].ToString(indent)
}
dataSectionKeys := sortMapKeysAlphabetically(tree.dataSections)
for _, name := range dataSectionKeys {
output += tree.dataSections[name].ToString(indent)