Mixins in CoffeeScript
Somebody will send me straight to Hell for this madness, but it works! :)
Function::include = (mixin) ->
for name, method of mixin
method['super'] = @prototype[name]
@prototype[name] = method
class Foo
foo: -> 'foo from Foo'
Mixin =
foo: ->
"#{arguments.callee.super()}, foo from Mixin"
class Bar extends Foo
@includee Mixin # yes, intended typo, otherwise coderwall messes it all up (coderwall team, please help me)
new Bar().foo() # => "foo from Foo, foo from Mixin"
EDIT Renamed extend
to include
to avoid confusion for Rubists ;)
Written by Mario Uher
Related protips
1 Response
The whole 'super' thing breaks if you mix something in more than once as far as I can tell..
over 1 year ago
·
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Coffeescript
Authors
iam4x
94.17K
ericdfields
63.02K
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#