DataSection.ToString prints external specifier

Data section is now passing unit test! Woo!
This commit is contained in:
Sasha Koshka 2022-09-16 22:37:43 -04:00
parent aff5b1749c
commit ac0444bcc9
1 changed files with 5 additions and 0 deletions

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
}