(name)
| 25280 | return !this.parent || !this.names.has(name) && this.parent.is_top_level(name); |
| 25281 | } |
| 25282 | get_owner(name) { |
| 25283 | return this.owners.get(name) || this.parent && this.parent.get_owner(name); |
| 25284 | } |
| 25285 | is_let(name) { |
| 25286 | const owner = this.get_owner(name); |
| 25287 | return owner && (owner.type === "Element" || owner.type === "InlineComponent" || owner.type === "SlotTemplate"); |
no test coverage detected