blob: fc73973968bbc2c7fd87238bf4527b1679c774f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="UTF-8"?>
<scxml datamodel="lua" initial="s0" name="ScxmlShape1" version="1.0" xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
<state id="s0">
<onentry>
<send event="foo">
<content>
this is a
string
</content>
</send>
</onentry>
<transition cond="_event.data == 'this is a string'" event="foo" target="pass"/>
<transition event="*" target="fail"/>
</state>
<final id="pass">
<onentry>
<log expr="'pass'" label="Outcome"/>
</onentry>
</final>
<final id="fail">
<onentry>
<log expr="'fail'" label="Outcome"/>
</onentry>
</final>
</scxml>
|