type-section-rework #6

Merged
sashakoshka merged 46 commits from type-section-rework into main 2022-09-17 10:36:27 -06:00
Showing only changes of commit ac0444bcc9 - Show all commits

View File

@ -329,6 +329,11 @@ func (section DataSection) ToString (indent int) (output string) {
section.permission.ToString(), " ",
section.name, ":",
section.what.ToString(indent + 1, true), "\n")
if section.external {
output += doIndent(indent + 1, "external\n")
}
return
}