Created
March 23, 2015 02:22
-
-
Save AdamCaviness/816b67c2823f1ef036e5 to your computer and use it in GitHub Desktop.
Douglas Crockford classical inheritance
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
/*jslint node: true*/ | |
'use strict'; | |
var Parenizor = require('./crockfordClass').Parenizor; | |
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; | |
}); | |
function ZParenizor(value) { | |
this.setValue(value); | |
} | |
ZParenizor.inherits(Parenizor); | |
ZParenizor.method('toString', function () { | |
if (this.getValue()) { | |
return this.uber('toString'); | |
} | |
return '-0-'; | |
}); | |
var myZParenizor = new ZParenizor(0); | |
console.log(myZParenizor.toString()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment