Atom With Data

Each atom, represented by <o/> containing @atom, in XMIR, must not have the text data inside.

Incorrect:

<program>
  <objects>
    <o atom="Foo">
      A1-B2-C3-D4-E5
    </o>
  </objects>
</program>

Correct:

<program>
  <objects>
    <o atom="Foo"/>
  </objects>
</program>