Changeset 97892 in webkit for trunk/Source/JavaScriptCore/runtime/ClassInfo.h
- Timestamp:
- Oct 19, 2011, 4:27:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ClassInfo.h
r97536 r97892 25 25 26 26 #include "CallFrame.h" 27 #include "ConstructData.h" 27 28 28 29 namespace JSC { … … 37 38 typedef CallType (*GetCallDataFunctionPtr)(JSCell*, CallData&); 38 39 GetCallDataFunctionPtr getCallData; 40 41 typedef ConstructType (*GetConstructDataFunctionPtr)(JSCell*, ConstructData&); 42 GetConstructDataFunctionPtr getConstructData; 39 43 }; 40 44 41 45 #define CREATE_METHOD_TABLE(ClassName) { \ 42 46 &ClassName::visitChildren, \ 43 &ClassName::getCallData \ 47 &ClassName::getCallData, \ 48 &ClassName::getConstructData, \ 44 49 }, \ 45 50 sizeof(ClassName)
Note:
See TracChangeset
for help on using the changeset viewer.