Changeset 98367 in webkit for trunk/Source/JavaScriptCore/runtime/ClassInfo.h
- Timestamp:
- Oct 25, 2011, 11:51:49 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ClassInfo.h
r98205 r98367 53 53 typedef bool (*DeletePropertyByIndexFunctionPtr)(JSCell*, ExecState*, unsigned); 54 54 DeletePropertyByIndexFunctionPtr deletePropertyByIndex; 55 56 typedef bool (*GetOwnPropertySlotFunctionPtr)(JSCell*, ExecState*, const Identifier&, PropertySlot&); 57 GetOwnPropertySlotFunctionPtr getOwnPropertySlot; 58 59 typedef bool (*GetOwnPropertySlotByIndexFunctionPtr)(JSCell*, ExecState*, unsigned, PropertySlot&); 60 GetOwnPropertySlotByIndexFunctionPtr getOwnPropertySlotByIndex; 55 61 }; 56 62 … … 63 69 &ClassName::deleteProperty, \ 64 70 &ClassName::deletePropertyByIndex, \ 71 &ClassName::getOwnPropertySlot, \ 72 &ClassName::getOwnPropertySlotByIndex, \ 65 73 }, \ 66 74 sizeof(ClassName)
Note:
See TracChangeset
for help on using the changeset viewer.