Skip to content

Instantly share code, notes, and snippets.

@dmi3y
Created June 17, 2015 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmi3y/27efe39c9e7e523d185b to your computer and use it in GitHub Desktop.
Save dmi3y/27efe39c9e7e523d185b to your computer and use it in GitHub Desktop.
`uber` (super) method from Douglas Crockford - http://www.crockford.com/javascript/inheritance.html
Function.method('inherits', function (parent) {
this.prototype = new parent();
var d = {},
p = this.prototype;
this.prototype.constructor = parent;
this.method('uber', function uber(name) {
if (!(name in d)) {
d[name] = 0;
}
var f, r, t = d[name], v = parent.prototype;
if (t) {
while (t) {
v = v.constructor.prototype;
t -= 1;
}
f = v[name];
} else {
f = p[name];
if (f == this[name]) {
f = v[name];
}
}
d[name] += 1;
r = f.apply(this, Array.prototype.slice.apply(arguments, [1]));
d[name] -= 1;
return r;
});
return this;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment