Skip to content

Instantly share code, notes, and snippets.

@jbeard4
Created March 2, 2011 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbeard4/850188 to your computer and use it in GitHub Desktop.
Save jbeard4/850188 to your computer and use it in GitHub Desktop.
test case 2
<scxml xmlns="http://www.w3.org/2005/07/scxml" profile="ecmascript" version="1.0" name="scxmlRoot">
<initial>
<transition target="P"/>
</initial>
<parallel id="P">
<history id="H" type="deep"/>
<state id="A" initial="A1">
<state id="A1">
<transition target="A2" event="e1" />
</state>
<state id="A2"/>
</state>
<state id="B" initial="B1">
<state id="B1">
<transition target="B2" event="e1" />
</state>
<state id="B2"/>
</state>
<transition event="e2" target="C"/>
</parallel>
<state id="C">
<transition event="e3" target="H"/>
</state>
</scxml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment