Skip to content

Instantly share code, notes, and snippets.

@alexbartlow
Created October 17, 2011 16:46
Show Gist options
  • Save alexbartlow/1293051 to your computer and use it in GitHub Desktop.
Save alexbartlow/1293051 to your computer and use it in GitHub Desktop.
Mixin based coffeescript classes
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