Changeset 27413 in webkit for trunk/JavaScriptCore/kjs/object.h
- Timestamp:
- Nov 3, 2007, 6:08:04 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.h
r27149 r27413 63 63 * 0L if there is none. 64 64 */ 65 const ClassInfo *parentClass;65 const ClassInfo* parentClass; 66 66 /** 67 67 * Static hash-table of properties. 68 68 */ 69 const HashTable *propHashTable; 70 /** 71 * Reserved for future extension. 72 */ 73 void *dummy; 69 const HashTable* propHashTable; 74 70 }; 75 71 … … 150 146 * 151 147 * \code 152 * const ClassInfo BarImp::info = { "Bar", 0, 0, 0}; // no parent class153 * const ClassInfo FooImp::info = { "Foo", &BarImp::info, 0, 0};148 * const ClassInfo BarImp::info = { "Bar", 0, 0 }; // no parent class 149 * const ClassInfo FooImp::info = { "Foo", &BarImp::info, 0 }; 154 150 * \endcode 155 151 *
Note:
See TracChangeset
for help on using the changeset viewer.