@line is absent

In XMIR, each <o/> element with a @base attribute must also have a @line attribute.

Incorrect:

<object>
  <o>
    <o name="bar" base="foo"/>
  </o>
</object>

Correct:

<object>
  <o>
    <o name="bar" base="foo" line="1"/>
  </o>
</object>

Published on Fri Sep 12 07:14:09 UTC 2025.