36 lines
955 B
JavaScript
36 lines
955 B
JavaScript
/**
|
|
* The JS-OOP used here is based on the Guru Doug Crackford's example at http://www.crockford.com/javascript/inheritance.html
|
|
*/
|
|
|
|
Function.prototype.method = function (name, func) {
|
|
this.prototype[name] = func;
|
|
return this;
|
|
};
|
|
|
|
Function.method('inherits', function (parent) {
|
|
var d = {}, p = (this.prototype = new 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;
|
|
});
|