Created
December 8, 2012 19:24
-
-
Save florian/4241521 to your computer and use it in GitHub Desktop.
A mixin implementation for CoffeeScript
This file contains hidden or 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
Function::extend = (mixin) -> @[key] = value for key, value of mixin | |
Function::include = (mixin) -> @::[key] = value for key, value of mixin |
This file contains hidden or 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 A | |
@z: 42 | |
class B | |
@extend A | |
B.z # => 42 | |
class C | |
@include A | |
(new C).z # => 42 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment