Changeset 1837 in webkit for trunk/JavaScriptCore/kjs/object.cpp
- Timestamp:
- Aug 16, 2002, 12:43:56 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.cpp
r1824 r1837 27 27 #include "interpreter.h" 28 28 #include "lookup.h" 29 #include "reference_list.h" 29 30 30 31 #include <assert.h> … … 404 405 } 405 406 406 List ObjectImp::propList(ExecState *exec, bool recursive)407 { 408 List list;407 ReferenceList ObjectImp::propList(ExecState *exec, bool recursive) 408 { 409 ReferenceList list; 409 410 if (_proto && _proto->dispatchType() == ObjectType && recursive) 410 411 list = static_cast<ObjectImp*>(_proto)->propList(exec,recursive);
Note:
See TracChangeset
for help on using the changeset viewer.