Earlier quoted context omitted.
> ${x} Fine for x:string, but what about w:WebWorker?
What would you expect that to do, in any framework?
and expect the worker instance to be passed as an object to `MyComponent` as a prop. But with webcomponents, I can't do something like that. this.innerHTML = ``
will just stringify the worker and pass that string to the `my-component`. To get the worker instance to be passed correctly, I'd need to do something like this.innerHTML = ``
this.firstChild.worker = worker;