| 3796 | } |
| 3797 | // ----- hs-include helpers ----- |
| 3798 | static #findHsInclude(sourceElt) { |
| 3799 | var attr = sourceElt.getAttribute("hs-include"); |
| 3800 | if (attr !== null) return { value: attr, scopeElt: sourceElt }; |
| 3801 | var elt = sourceElt.parentElement; |
| 3802 | while (elt) { |
| 3803 | attr = elt.getAttribute("hs-include:inherited"); |
| 3804 | if (attr !== null) return { value: attr, scopeElt: elt }; |
| 3805 | elt = elt.parentElement; |
| 3806 | } |
| 3807 | return null; |
| 3808 | } |
| 3809 | static #readScope(elt) { |
| 3810 | return elt?._hyperscript?.elementScope || {}; |
| 3811 | } |