Reputation: 2607
Is there any way to put a mixin on another mixin like this? I want to share some common methods among a few mixins.
mixin CircleMixin with SquareMixin {}
Upvotes: 0
Views: 67
Reputation: 3219
No, it's currently not possible to compose mixins. See this issue that's tracking the request for this feature.
Upvotes: 3