blob: acb601c84a80a7f39f219ba9272f9e9e1c01885b [file] [log] [blame] [edit]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2011-2012 Jacob Beard, INFICON, and other SCION contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<scxml
datamodel="ecmascript"
xmlns="http://www.w3.org/2005/07/scxml"
version="1.0">
<datamodel>
<data id="i"/>
</datamodel>
<state id="a">
<transition target="b" event="t">
<assign location="i" expr="0"/>
<script src="script-1-0.js"/>
</transition>
</state>
<state id="b">
<transition target="b" cond="i &lt; 100">
<script src="script-1-1.js"/>
</transition>
<transition target="c" cond="i === 100"/>
</state>
<state id="c"/>
</scxml>