summaryrefslogtreecommitdiffstats
path: root/test/samples/w3c/txml/test175.txml
blob: aba7ac4a528cc5ba3aa92e3c6f1b89f4e3bac54f (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
26
27
28
29
30
<?xml version="1.0"?>
<!-- we test that delayexpr uses the current value of var1, not its initial value
(If it uses the initial value, event2 will be generated first, before event1.  If it uses the current value, 
event1 will be raised first.  Succeed if event1 occurs before event2, otherwise fail -->

<scxml initial="s0" version="1.0" conf:datamodel=""  xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
<datamodel>
  <data conf:id="1" conf:quoteExpr="0s"/>
  </datamodel>
  
<state id="s0">
  <onentry>
   <assign conf:location="1" conf:quoteExpr="3s"/>
   <send conf:delayExpr="1" event="event2"/>
   <send delay="1s" event="event1"/>
    </onentry>
    
  <transition event="event1"  target="s1"/>
  <transition event="event2" conf:targetfail=""/>
 </state>

<state id="s1">
  <transition event="event2"  conf:targetpass=""/>
  <transition event="*" conf:targetfail=""/>
  </state>
   
   <conf:pass/>
   <conf:fail/>

</scxml>