Menu

#12 Events are ignored in actions.

open
nobody
bug (5)
2022-01-26
2022-01-26
Anonymous
No

Originally created by: cepsdev

The following doesn't work - E is never fired.

Event E;
sm{
 S;
 on_enter{
   E;
 };
 states{Initial;};
};
Simulation{
 Start{S;};
};

But putting E into a scope works:

...
 on_enter{
   {E;}
 };
...

Discussion


Log in to post a comment.