function inherits(child, parent) { function tmp() {}; tmp.prototype = parent.prototype; child.prototype = new tmp(); child.prototype.constructor = child; }
function A() { this.x_ = 5 }; function B() {A.call(this);};inherits(B, A);
function inherits(child, parent) { function tmp() {}; tmp.prototype = parent.prototype; child.prototype = new tmp(); child.prototype.constructor = child; }
function A() { this.x_ = 5 }; function B() {A.call(this);};inherits(B, A);