Decorating an extended element breaks in polyfilled browsers #459
Labels
Good First Issue
This is a good first issue for someone wantng to contribute to Stencil!
ionitron: stale issue
This issue has not seen any activity for a long period of time
Stencil version:
I'm submitting a:
Current behavior:
So I'd like to extract some common behavior from a few components. My intention was to use mixin classes to accomplish this. This pattern requires extending a class, e.g.
class Foo extends withBar()
I'm finding that in polyfilled browsers (Firefox, IE11, Edge), extending any Stencil component causes weird errors, like failing to render at all. This is true even for simple things like
class Foo extends Object
. I don't see any compiler or run-time errors.In Chrome it's working fine.
Steps to reproduce:
npm i
https://github.com/mattdsteele/stencil-extended-elementsnpm run dev --es5
<my-component>
element, which extends Object, does not render.Other information:
Other issues make me think this should be possible: #133 (comment), #272
The text was updated successfully, but these errors were encountered: