Changeset 98177 in webkit for trunk/Source/JavaScriptCore/runtime/ClassInfo.h
- Timestamp:
- Oct 21, 2011, 5:48:40 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ClassInfo.h
r97892 r98177 41 41 typedef ConstructType (*GetConstructDataFunctionPtr)(JSCell*, ConstructData&); 42 42 GetConstructDataFunctionPtr getConstructData; 43 44 typedef void (*PutFunctionPtr)(JSCell*, ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&); 45 PutFunctionPtr put; 46 47 typedef void (*PutByIndexFunctionPtr)(JSCell*, ExecState*, unsigned propertyName, JSValue); 48 PutByIndexFunctionPtr putByIndex; 43 49 }; 44 50 … … 47 53 &ClassName::getCallData, \ 48 54 &ClassName::getConstructData, \ 55 &ClassName::put, \ 56 &ClassName::putByIndex, \ 49 57 }, \ 50 58 sizeof(ClassName)
Note:
See TracChangeset
for help on using the changeset viewer.