Changeset 15468 in webkit for trunk/JavaScriptCore/API/APICast.h
- Timestamp:
- Jul 16, 2006, 2:06:28 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/APICast.h
r15437 r15468 35 35 class JSValue; 36 36 class JSObject; 37 class ReferenceList;37 class PropertyNameArray; 38 38 } 39 39 … … 65 65 } 66 66 67 inline KJS:: ReferenceList* toJS(JSPropertyListRef l)67 inline KJS::PropertyNameArray* toJS(JSPropertyNameAccumulatorRef a) 68 68 { 69 return reinterpret_cast<KJS:: ReferenceList*>(l);69 return reinterpret_cast<KJS::PropertyNameArray*>(a); 70 70 } 71 71 … … 95 95 } 96 96 97 inline JSPropertyListRef toRef(KJS::ReferenceList* l)98 {99 return reinterpret_cast<JSPropertyListRef>(l);100 }101 102 97 inline JSContextRef toRef(KJS::ExecState* e) 103 98 { … … 105 100 } 106 101 102 inline JSPropertyNameAccumulatorRef toRef(KJS::PropertyNameArray* l) 103 { 104 return reinterpret_cast<JSPropertyNameAccumulatorRef>(l); 105 } 106 107 107 #endif // APICast_h
Note:
See TracChangeset
for help on using the changeset viewer.