Home | History | Annotate | Download | only in runtime

Lines Matching full:base

342     inline size_t normalizePrototypeChain(CallFrame* callFrame, JSValue base, JSValue slotBase, const Identifier& propertyName, size_t& slotOffset)
344 JSCell* cell = asCell(base);
350 // If we didn't find slotBase in base's prototype chain, then base
373 inline size_t normalizePrototypeChain(CallFrame* callFrame, JSCell* base)
377 JSValue v = base->structure()->prototypeForLookup(callFrame);
381 base = asCell(v);
385 if (base->structure()->isDictionary())
386 asObject(base)->flattenDictionaryObject();
401 JSObject* base;
403 base = *iter;
404 if (next == end || base->getPropertySlot(callFrame, property, slot))
405 return base;