3つのミックスインを持つクラスの例:
Object = Ember.Object.extend( mixin1, mixin2, mixin3 {
init: function(){
this._super();
var myMixins = this.gatherMixins();
},
gatherMixins: function(){
// what goes in here?
}
});