proposal-mixins
proposal-mixins copied to clipboard
A template for ECMAScript proposals
Mixins doesn't cover the same feature set that Protocols do, but for most of the Protocol features there are analogues possible using other proposals. Having examples of each would provide...
The section on [Symbol.mixin](https://github.com/justinfagnani/proposal-mixins#symbolmixin) indicates that a property of the constructor prototpe will be set to the mixin applied. However, it's not obvious what this should be when multiple mixins...
To work towards a common understanding of the problem space with the First-Class Protocols proposal, we want to have a clear set of developer problems that each proposal does or...
I have concerns about `constructor`s in mixins. Allowing declaring constructor in mixins means allowing access to super since it's a must to call `super` in constructor, which would lead to...