Changeset 1837 in webkit for trunk/JavaScriptCore/kjs/object.h
- Timestamp:
- Aug 16, 2002, 12:43:56 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.h
r1824 r1837 34 34 #include "value.h" 35 35 #include "types.h" 36 #include "reference_list.h" 36 37 37 38 namespace KJS { … … 42 43 class HashEntry; 43 44 class ListImp; 45 class ReferenceList; 44 46 45 47 // ECMA 262-3 8.6.1 … … 331 333 * @return A List of References to properties of the object. 332 334 **/ 333 List propList(ExecState *exec, bool recursive = true);335 ReferenceList propList(ExecState *exec, bool recursive = true); 334 336 335 337 /** … … 561 563 void setScope(const List &s); 562 564 563 List propList(ExecState *exec, bool recursive = true);565 ReferenceList propList(ExecState *exec, bool recursive = true); 564 566 565 567 Value internalValue() const; … … 689 691 { imp()->setScope(s); } 690 692 691 inline List Object::propList(ExecState *exec, bool recursive)693 inline ReferenceList Object::propList(ExecState *exec, bool recursive) 692 694 { return imp()->propList(exec,recursive); } 693 695
Note:
See TracChangeset
for help on using the changeset viewer.