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