tc39 / proposal-mixins

A template for ECMAScript proposals
MIT License
61 stars 2 forks source link

Order when applying multiple mixins #6

Open alippai opened 6 years ago

alippai commented 6 years ago

I think this example could be added to the description:

Given:

class Z extends A with B, C {}

Does it mean

class Z extends C(B(A)) {}

or

class Z extends B(C(A)) {}