proposal-mixins icon indicating copy to clipboard operation
proposal-mixins copied to clipboard

Order when applying multiple mixins

Open alippai opened this issue 6 years ago • 0 comments

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)) {}

alippai avatar Sep 24 '18 14:09 alippai