blob: fe7423c22e77fccb405e645c39ec9860ccb7df6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0"?>
<!-- test illegal assignment. error.execution should be raised. -->
<scxml initial="s0" conf:datamodel="" version="1.0" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
<datamodel>
<data conf:id="1"/>
</datamodel>
<state id="s0">
<onentry>
<assign conf:location="1" conf:illegalExpr=""/>
<raise event="event"/>
</onentry>
<transition event="error.execution" conf:targetpass=""/>
<transition event="*" conf:targetfail=""/>
</state>
<conf:pass/>
<conf:fail/>
</scxml>
|