Changeset 15486 in webkit for trunk/JavaScriptCore/API/JSObjectRef.h
- Timestamp:
- Jul 17, 2006, 8:19:46 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSObjectRef.h
r15484 r15486 505 505 @param ctx The execution context to use. 506 506 @param object The JSObject whose property you want to get. 507 @param propertyIndex The property's name as a number 507 @param propertyIndex The property's name as a number. 508 508 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. 509 509 @result The property's value if object has the property, otherwise the undefined value. … … 517 517 @param ctx The execution context to use. 518 518 @param object The JSObject whose property you want to set. 519 @param propertyIndex The property's name as a number 519 @param propertyIndex The property's name as a number. 520 520 @param value A JSValue to use as the property's value. 521 521 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. … … 596 596 /*! 597 597 @function 598 @abstract 599 @param array 600 @result 598 @abstract Retains a JavaScript property name array. 599 @param array The JSPropertyNameArray to retain. 600 @result A JSPropertyNameArray that is the same as array. 601 601 */ 602 602 JSPropertyNameArrayRef JSPropertyNameArrayRetain(JSPropertyNameArrayRef array); … … 604 604 /*! 605 605 @function 606 @abstract 607 @param array 606 @abstract Releases a JavaScript property name array. 607 @param array The JSPropetyNameArray to release. 608 608 */ 609 609 void JSPropertyNameArrayRelease(JSPropertyNameArrayRef array); … … 611 611 /*! 612 612 @function 613 @abstract 614 @param array 615 @result 613 @abstract Get the number of items in a JavaScript property name array. 614 @param array The array from which to retrieve the count. 615 @result The count of items in the array. 616 616 */ 617 617 size_t JSPropertyNameArrayGetCount(JSPropertyNameArrayRef array); … … 619 619 /*! 620 620 @function 621 @abstract 622 @param array 623 @param index 624 @result 621 @abstract Get a single item from a JavaScript property name array. 622 @param array The array from which to retrieve a property name. 623 @param index The index of the property name to retrieve. 624 @result A JSStringRef containing the name of the property. 625 625 */ 626 626 JSStringRef JSPropertyNameArrayGetNameAtIndex(JSPropertyNameArrayRef array, size_t index); … … 628 628 /*! 629 629 @function 630 @abstract 631 @param accumulator 630 @abstract Add a property name - useful while getting the property names for an object. 631 @param accumulator The accumulator object to which to add the property. 632 632 @param propertyName The new property to add. 633 633 */
Note:
See TracChangeset
for help on using the changeset viewer.