Initial checkin v13.0
This commit is contained in:
35
src/js/CrockfordInheritance.v0.1.js
Normal file
35
src/js/CrockfordInheritance.v0.1.js
Normal file
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* 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;
|
||||
});
|
||||
Reference in New Issue
Block a user