Merge pull request #3902 from weedySeaDragon/bug/3858_state_named_state_container

Bug/3858 [state] trailing whitespace in ids for named state container
This commit is contained in:
Sidharth Vinod
2023-01-25 22:51:34 +05:30
committed by GitHub
5 changed files with 223 additions and 74 deletions

View File

@@ -161,12 +161,19 @@
First --> Second
First --> Third
state First {
state "the first composite" as First {
[*] --> 1st
1st --> [*]
state innerFirst {
state "1 in innerFirst" as 1st1st
1st2nd: 2 in innerFirst
[*] --> 1st1st
1st1st --> 1st2nd
%% 1st2nd --> 1st
}
1st --> innerFirst
innerFirst --> 2nd
}
state Second {
[*] --> 2nd
2nd --> [*]
}
state Third {