Created
October 17, 2011 16:46
-
-
Save alexbartlow/1293051 to your computer and use it in GitHub Desktop.
Mixin based coffeescript classes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Composable | |
@include = (modules...) -> | |
@composable_modules ||= [] | |
for module in modules | |
@composable_modules.push module | |
apply_mixins: -> | |
@__proto__.constructor.composable_modules ||= [] | |
for module in @__proto__.constructor.composable_modules | |
for key, value of module.prototype | |
this[key] ||= value | |
constructor: -> | |
@apply_mixins() | |
class Mixin | |
foo: -> | |
alert "foo from mixin" | |
class Composed extends Composable | |
@include Mixin | |
c = new Composed() | |
c.foo() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment