Face sections are actually ToString'd now
This commit is contained in:
parent
b0d4ecc83f
commit
1f88b54eaa
@ -61,6 +61,11 @@ func (tree *SyntaxTree) ToString (indent int) (output string) {
|
|||||||
output += tree.enumSections[name].ToString(indent)
|
output += tree.enumSections[name].ToString(indent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
faceSectionKeys := sortMapKeysAlphabetically(tree.faceSections)
|
||||||
|
for _, name := range faceSectionKeys {
|
||||||
|
output += tree.faceSections[name].ToString(indent)
|
||||||
|
}
|
||||||
|
|
||||||
dataSectionKeys := sortMapKeysAlphabetically(tree.dataSections)
|
dataSectionKeys := sortMapKeysAlphabetically(tree.dataSections)
|
||||||
for _, name := range dataSectionKeys {
|
for _, name := range dataSectionKeys {
|
||||||
output += tree.dataSections[name].ToString(indent)
|
output += tree.dataSections[name].ToString(indent)
|
||||||
|
Reference in New Issue
Block a user