Skip to content

should reject an scxml document containing foreach without @array #383

Description

@mattoshry

Per [1], foreach/@array is required.

SCION should reject the following:

<scxml xmlns="http://www.w3.org/2005/07/scxml"
  version="1.0">

<state id="uber">

  <onentry>
    <!-- missing array -->
    <foreach item="it">
      <log expr="'bug'"/>
    </foreach>
  </onentry>

  <transition event="*" target="fail">
    <log expr="'unhandled event ' + JSON.stringify(_event)"/>
  </transition>

</state>

<final id="fail"/>

</scxml>

[1] https://www.w3.org/TR/scxml/#foreach

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions