Changeset 14951 in webkit for trunk/JavaScriptCore/kjs/object.h
- Timestamp:
- Jun 21, 2006, 2:09:19 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/object.h
r14256 r14951 457 457 * @return A List of References to properties of the object. 458 458 **/ 459 virtual ReferenceList propList(ExecState *exec, bool recursive = true);459 virtual void getPropertyList(ExecState *exec, ReferenceList& propertyList, bool recursive = true); 460 460 461 461 /** … … 478 478 void setInternalValue(JSValue *v); 479 479 480 JSValue *toPrimitive(ExecState *exec, JSType preferredType = UnspecifiedType) const;481 bool toBoolean(ExecState *exec) const;482 double toNumber(ExecState *exec) const;483 UString toString(ExecState *exec) const;484 JSObject *toObject(ExecState *exec) const;480 virtual JSValue *toPrimitive(ExecState *exec, JSType preferredType = UnspecifiedType) const; 481 virtual bool toBoolean(ExecState *exec) const; 482 virtual double toNumber(ExecState *exec) const; 483 virtual UString toString(ExecState *exec) const; 484 virtual JSObject *toObject(ExecState *exec) const; 485 485 486 bool getPropertyAttributes(const Identifier& propertyName, int& attributes) const;486 bool getPropertyAttributes(const Identifier& propertyName, unsigned& attributes) const; 487 487 488 488 // Returns whether the object should be treated as undefined when doing equality comparisons
Note:
See TracChangeset
for help on using the changeset viewer.