blob: 38a50975ca0d4ce7fe3e92fd9c1f291d9e0cc8c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0"?>
<!-- make sure sendid is blank in a non-error event -->
<scxml version="1.0" xmlns="http://www.w3.org/2005/07/scxml" initial="s0" conf:datamodel="" name="machineName" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
<state id="s0">
<onentry>
<send event="foo"/>
</onentry>
<transition event="foo" conf:eventFieldHasNoValue="sendid" conf:targetpass=""/>
<transition event="*" conf:targetfail=""/>
</state>
<conf:pass/>
<conf:fail/>
</scxml>
|