Created
January 31, 2011 09:15
-
-
Save thejh/803810 to your computer and use it in GitHub Desktop.
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
var Thing; | |
var __hasProp = Object.prototype.hasOwnProperty, __extends = function(child, parent) { | |
for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } | |
function ctor() { this.constructor = child; } | |
ctor.prototype = parent.prototype; | |
child.prototype = new ctor; | |
child.__super__ = parent.prototype; | |
return child; | |
}; | |
Thing = (function() { | |
__extends(Thing, EventEmitter); | |
function Thing(name) { //this constructor function is the scope of `name` | |
this.getName = function() { //but `this` is what the constructor returns, so this method is public | |
return name; | |
}; | |
} | |
return Thing; | |
})(); |
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 Thing extends EventEmitter | |
constructor: (name) -> | |
@getName = -> name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment