Home | History | Annotate | Download | only in src

Lines Matching defs: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;
764 var ctor = this.constructorFunction();
765 if (!ctor.isFunction()) {
768 name = ctor.name();