tree-tostring.go compiles

This commit is contained in:
Sasha Koshka 2022-09-15 14:58:50 -04:00
parent 6e7a38a7a9
commit df1636e8fa
1 changed files with 3 additions and 3 deletions

View File

@ -103,8 +103,8 @@ func (attributes ObjectDefaultValues) ToString (
) (
output string,
) {
for _, name := range sortMapKeysAlphabetically(attributes.attributes) {
value := attributes.attributes[name]
for _, name := range sortMapKeysAlphabetically(attributes) {
value := attributes[name]
output += doIndent(indent, ".", name)
if value.kind == ArgumentKindObjectDefaultValues {
@ -123,7 +123,7 @@ func (values ArrayDefaultValues) ToString (
) (
output string,
) {
for _, value := range values.values {
for _, value := range values {
output += value.ToString(indent, true)
}