test324.txml 708 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0"?>
  2. <!-- test that _name stays bound till the session ends. This means that it cannot be assigned to -->
  3. <scxml initial="s0" version="1.0" xmlns="http://www.w3.org/2005/07/scxml" conf:datamodel="" name="machineName" xmlns:conf="http://www.w3.org/2005/scxml-conformance">
  4. <state id="s0">
  5. <transition conf:nameVarVal="machineName" target="s1"/>
  6. <transition conf:targetfail=""/>
  7. </state>
  8. <state id="s1">
  9. <onentry>
  10. <assign conf:systemVarLocation="_name" expr="'otherName'"/>
  11. </onentry>
  12. <transition conf:nameVarVal="machineName" conf:targetpass=""/>
  13. <transition conf:targetfail=""/>
  14. </state>
  15. <conf:pass/>
  16. <conf:fail/>
  17. </scxml>