Changeset 10857 in webkit for trunk/JavaScriptCore/kjs/object.h
- Timestamp:
- Oct 15, 2005, 5:46:25 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.h
r10744 r10857 48 48 class HashEntry; 49 49 class ListImp; 50 class IdentifierSequencedSet;51 50 52 51 // ECMA 262-3 8.6.1 … … 424 423 * 425 424 * @param exec The current execution state 426 * @param propertyNames A list of property names to be filled in by this call 425 * @param recursive Whether or not properties in the object's prototype 426 * chain should be 427 * included in the list. 428 * @return A List of References to properties of the object. 427 429 **/ 428 virtual void getPropertyNames(ExecState *exec, IdentifierSequencedSet& propertyNames);430 virtual ReferenceList propList(ExecState *exec, bool recursive = true); 429 431 430 432 /**
Note:
See TracChangeset
for help on using the changeset viewer.