Lines Matching full:ctor
133 * @param {function} ctor Constructor function which needs to inherit the
137 function inherits(ctor, superCtor) {
140 ctor.super_ = superCtor.prototype;
141 ctor.prototype = new tempCtor();
142 ctor.prototype.constructor = ctor;
762 var ctor = this.constructorFunction();
763 if (!ctor.isFunction()) {
766 name = ctor.name();