Changeset 10744 in webkit for trunk/JavaScriptCore/kjs/object.h
- Timestamp:
- Oct 5, 2005, 1:05:44 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.h
r10207 r10744 48 48 class HashEntry; 49 49 class ListImp; 50 class IdentifierSequencedSet; 50 51 51 52 // ECMA 262-3 8.6.1 … … 423 424 * 424 425 * @param exec The current execution state 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. 426 * @param propertyNames A list of property names to be filled in by this call 429 427 **/ 430 virtual ReferenceList propList(ExecState *exec, bool recursive = true);428 virtual void getPropertyNames(ExecState *exec, IdentifierSequencedSet& propertyNames); 431 429 432 430 /**
Note:
See TracChangeset
for help on using the changeset viewer.