Skip to content

Commit

Permalink
Fix #27: correctly dump multivalued properties
Browse files Browse the repository at this point in the history
The dot was missing between elements of a collection.
  • Loading branch information
Gabriel-Darbord committed Oct 22, 2023
1 parent f937761 commit 64ada7c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/FAST-Core-Tools/FASTDumpVisitor.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ FASTDumpVisitor >> visit: aFASTEntity [
FASTDumpVisitor >> visitChildren: children [

stream nextPut: ${.
children do: [ :aFASTEntity | self visit: aFASTEntity ].
children
do: [ :aFASTEntity | self visit: aFASTEntity ]
separatedBy: [ stream nextPut: $. ].
stream nextPut: $}
]

Expand Down

0 comments on commit 64ada7c

Please sign in to comment.