summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test496.scxml
blob: ab5a2c02a8cc2aac4f53034b11382ceeaa643bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" standalone="no"?>
<scxml xmlns="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="lua">
  <state id="s0">
    <onentry>
      <send type="http://www.w3.org/TR/scxml/#SCXMLEventProcessor" event="event" target="FIXME"/>
      <raise event="foo"/>
    </onentry>
    <transition event="error.communication" target="pass"/>
    <transition event="*" target="fail"/>
  </state>
  <final id="pass"/>
  <final id="fail"/>
</scxml>