Lines Matching refs:superCtor
7081 var inherits = function inherits(cls, superCtor, statics, prototype) {
7083 cls.super_ = superCtor;
7111 cls.prototype = Object.create(superCtor.prototype, properties);
29449 function inherits(ctor, superCtor) {
29450 ctor.super_ = superCtor;
29454 TempCtor.prototype = superCtor.prototype;
33038 function inherits(ctor, superCtor) {
33039 ctor.super_ = superCtor;
33043 TempCtor.prototype = superCtor.prototype;
50670 module.exports = function inherits(ctor, superCtor) {
50671 if (superCtor) {
50672 ctor.super_ = superCtor;
50673 ctor.prototype = Object.create(superCtor.prototype, {
50685 module.exports = function inherits(ctor, superCtor) {
50686 if (superCtor) {
50687 ctor.super_ = superCtor;
50691 TempCtor.prototype = superCtor.prototype;
54384 exports.inherits = function (ctor, superCtor) {
54387 Obj.prototype = superCtor.prototype;
81811 module.exports = function inherits(ctor, superCtor) {
81812 ctor.super_ = superCtor;
81813 ctor.prototype = Object.create(superCtor.prototype, {
81824 module.exports = function inherits(ctor, superCtor) {
81825 ctor.super_ = superCtor;
81829 TempCtor.prototype = superCtor.prototype;