Changeset 10180 in webkit for trunk/JavaScriptCore/kjs/object.h
- Timestamp:
- Aug 14, 2005, 9:27:13 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.h
r10178 r10180 617 617 }; 618 618 619 inline bool AllocatedValueImp::isObject(const ClassInfo *info) const 620 { return isObject() && static_cast<const ObjectImp *>(this)->inherits(info); } 619 inline bool AllocatedValueImp::isObject(const ClassInfo *info) const 620 { 621 return isObject() && static_cast<const ObjectImp *>(this)->inherits(info); 622 } 621 623 622 624 inline ObjectImp::ObjectImp(ObjectImp *proto)
Note:
See TracChangeset
for help on using the changeset viewer.