@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 Tue Mar 31 07:20:33 UTC 2026.