You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the referenced element is a (shadow-including) ancestor of the ‘use’ element, then this is an invalid circular reference and the ‘use’ element is in error.
requires the generation of infinitely deep shadow trees if it references something containing a reference cycle. It should be corrected to
If the referenced element is a (shadow-including) ancestor of the ‘use’ element or the referenced element of such an ancestor, then this is an invalid circular reference and the ‘use’ element is in error.
The text was updated successfully, but these errors were encountered:
I'm not sure I understand the distinction between those two statements, if we take “shadow-including” to include the shadow trees generated by use references.
Can you give a short example code snippet that shows the problem?
If the referenced element, or a cloned instance of the referenced element, is a (shadow-including) ancestor of the ‘use’ element, then this is an invalid circular reference and the ‘use’ element is in error.
Under #UseElement, the text
requires the generation of infinitely deep shadow trees if it references something containing a reference cycle. It should be corrected to
The text was updated successfully, but these errors were encountered: