We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 66224db + 214576a commit eff8d3fCopy full SHA for eff8d3f
src/_helper/checking.js
@@ -147,6 +147,10 @@ Checking = new (function() {
147
return "state machine " + statemachine.getStatePath() + " has no initial state";
148
}
149
150
+ if (statemachine.isConcurrent() && statemachine.getOutcomes().contains("preempted")) {
151
+ return "state machine " + statemachine.getStatePath() + " has outcome 'preempted' which is not permitted for concurrency statemachines";
152
+ }
153
+
154
for (var i = 0; i < states.length; i++) {
155
var error_string = undefined;
156
if (states[i] instanceof Statemachine) {
0 commit comments