Home | History | Annotate | Download | only in org

Lines Matching full:prototype

260      * to the other frame to test against its Array prototype.  To
341 * we care about on the Object prototype.
351 if (org.antlr.lang.isFunction(f) && f!=Object.prototype[fname]) {
359 * Utility to set up the prototype, constructor and superclass properties to
368 * subclass prototype. These will override the
378 F.prototype=superc.prototype;
379 subc.prototype=new F();
380 subc.prototype.constructor=subc;
381 subc.superclass=superc.prototype;
382 if (superc.prototype.constructor == Object.prototype.constructor) {
383 superc.prototype.constructor=superc;
388 subc.prototype[i]=overrides[i];
391 org.antlr.lang._IEEnumFix(subc.prototype, overrides);
435 * Same as org.antlr.lang.augmentObject, except it only applies prototype properties
451 var a=[r.prototype,s.prototype];