summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test560.scxml
blob: cb0d563814ca36eec7ced897bbec2f46d8a96ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" standalone="no"?>
<!-- in the ECMA data model, test that processor creates correct structure in
 _event.data when receiving KVPs in an event -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="ecmascript">
  <state id="s0">
    <onentry>
      <send event="foo">
        <param name="aParam" expr="1"/>
      </send>
    </onentry>
    <transition event="foo" cond="_event.data.aParam == 1" target="pass"/>
    <transition event="*" target="fail"/>
  </state>
  <final id="pass"/>
  <final id="fail"/>
</scxml>