(block)
| 19755 | block.chunks.mount.push(binding_callback); |
| 19756 | } |
| 19757 | add_attributes(block) { |
| 19758 | this.attributes.forEach((attribute) => { |
| 19759 | if (attribute.node.name === "class") { |
| 19760 | const dependencies = attribute.node.get_dependencies(); |
| 19761 | push_array$1(this.class_dependencies, dependencies); |
| 19762 | } |
| 19763 | }); |
| 19764 | if (this.node.attributes.some((attr) => attr.is_spread)) { |
| 19765 | this.add_spread_attributes(block); |
| 19766 | return; |
| 19767 | } |
| 19768 | this.attributes.forEach((attribute) => { |
| 19769 | attribute.render(block); |
| 19770 | }); |
| 19771 | } |
| 19772 | add_spread_attributes(block) { |
| 19773 | const levels = block.get_unique_name(`${this.var.name}_levels`); |
| 19774 | const data2 = block.get_unique_name(`${this.var.name}_data`); |
no test coverage detected