Searched refs:childCtor (Results 1 – 3 of 3) sorted by relevance
136 function Inherits(childCtor, parentCtor) { argument139 childCtor.superClass_ = parentCtor.prototype;140 childCtor.prototype = new tempCtor(); class141 childCtor.prototype.constructor = childCtor;
1422 goog.inherits = function(childCtor, parentCtor) { argument1426 childCtor.superClass_ = parentCtor.prototype;1427 childCtor.prototype = new tempCtor(); class1428 childCtor.prototype.constructor = childCtor;
29 function inherits(childCtor, parentCtor) { argument30 childCtor.prototype.__proto__ = parentCtor.prototype; class