(owner, ctx)
| 2273 | return data.features; |
| 2274 | } |
| 2275 | addFeatures(owner, ctx) { |
| 2276 | if (owner) { |
| 2277 | Object.assign(ctx.locals, this.getHyperscriptFeatures(owner)); |
| 2278 | this.addFeatures(owner.parentElement, ctx); |
| 2279 | } |
| 2280 | } |
| 2281 | // ================================================================= |
| 2282 | // Symbol and property resolution |
| 2283 | // ================================================================= |
nothing calls this directly
no test coverage detected