proposal-mixins
proposal-mixins copied to clipboard
Order when applying multiple mixins
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)) {}