| DescriptionJS_GetPropertyAttributesretrieves the attributes for a specified property,name.cxis the context, andobjis a pointer to the object that owns the property.attrspis a pointer to the unsigned integer storage area into which to retrieve the attributes.
If JS_GetPropertyAttributescannot locate an object with the specified property, it returnsJS_FALSE, and bothattrspandfoundpare undefined. 
If the specified property or the specified object does not exist, foundpis set toJS_FALSE. If the property exists, but belongs to another object,JS_GetPropertyAttributesthen returnsJS_FALSE, andattrspis undefined. If the property exists and it belongs to the object you specify, then foundp is set toJS_TRUE. IfJS_GetPropertyAttributescan actually read the current property values, it returnsJS_TRUE. Otherwise, it returnsJS_FALSE. 
 |