Searched refs:parentCtor (Results 1 – 3 of 3) sorted by relevance
136 function Inherits(childCtor, parentCtor) { argument138 tempCtor.prototype = parentCtor.prototype;139 childCtor.superClass_ = parentCtor.prototype;
1422 goog.inherits = function(childCtor, parentCtor) { argument1425 tempCtor.prototype = parentCtor.prototype;1426 childCtor.superClass_ = parentCtor.prototype;
29 function inherits(childCtor, parentCtor) { argument30 childCtor.prototype.__proto__ = parentCtor.prototype;