-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Repeatable output (idempotent output)
Fixes #61 Make sure we iterate over ordered keys when iterating maps. This allows for a more consisten rendering. Thanks @Justin-W for this tip. This update also remove now unnecessary testing supporting files that were checking different variants of the same rendering.
- Loading branch information
Javier Feliu
committed
Oct 26, 2019
1 parent
03dcc67
commit e0ac4f6
Showing
7 changed files
with
106 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,2 @@ | ||
#!/bin/bash | ||
go install ./... && goplantuml -show-aggregations -recursive -ignore="./testingsupport/" ./parser > ClassDiagram.puml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 1,19 @@ | ||
@startuml | ||
namespace subfolder3 { | ||
interface SubfolderInterface { | ||
namespace subfolder2 { | ||
class Subfolder2 << (S,Aquamarine) >> { | ||
SubfolderFunction() bool | ||
|
||
} | ||
} | ||
|
||
"subfolder3.SubfolderInterface" <|-- "subfolder2.Subfolder2" | ||
|
||
namespace subfolder2 { | ||
class Subfolder2 << (S,Aquamarine) >> { | ||
namespace subfolder3 { | ||
interface SubfolderInterface { | ||
SubfolderFunction() bool | ||
|
||
} | ||
} | ||
|
||
"subfolder3.SubfolderInterface" <|-- "subfolder2.Subfolder2" | ||
|
||
@enduml |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.