Changeset 98205 in webkit for trunk/Source/JavaScriptCore/runtime/ClassInfo.h
- Timestamp:
- Oct 23, 2011, 5:21:52 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/ClassInfo.h
r98177 r98205 47 47 typedef void (*PutByIndexFunctionPtr)(JSCell*, ExecState*, unsigned propertyName, JSValue); 48 48 PutByIndexFunctionPtr putByIndex; 49 50 typedef bool (*DeletePropertyFunctionPtr)(JSCell*, ExecState*, const Identifier&); 51 DeletePropertyFunctionPtr deleteProperty; 52 53 typedef bool (*DeletePropertyByIndexFunctionPtr)(JSCell*, ExecState*, unsigned); 54 DeletePropertyByIndexFunctionPtr deletePropertyByIndex; 49 55 }; 50 56 … … 55 61 &ClassName::put, \ 56 62 &ClassName::putByIndex, \ 63 &ClassName::deleteProperty, \ 64 &ClassName::deletePropertyByIndex, \ 57 65 }, \ 58 66 sizeof(ClassName)
Note:
See TracChangeset
for help on using the changeset viewer.