Changeset 34867 in webkit for trunk/JavaScriptCore/kjs/JSArray.h
- Timestamp:
- Jun 28, 2008, 8:56:04 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSArray.h
r34754 r34867 64 64 65 65 static JSValue* lengthGetter(ExecState*, const Identifier&, const PropertySlot&); 66 bool inlineGetOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&); 66 67 bool getOwnPropertySlotSlowCase(ExecState*, unsigned propertyName, PropertySlot&); 68 void putSlowCase(ExecState*, unsigned propertyName, JSValue*); 67 69 68 70 bool increaseVectorLength(unsigned newLength); … … 74 76 75 77 unsigned m_length; 76 unsigned m_ vectorLength;78 unsigned m_fastAccessCutoff; 77 79 ArrayStorage* m_storage; 78 80 };
Note:
See TracChangeset
for help on using the changeset viewer.