pub unsafe extern "C-unwind" fn JSPropertyNameAccumulatorAddName(
accumulator: JSPropertyNameAccumulatorRef,
property_name: JSStringRef,
)
Available on crate features
JSBase
and JSObjectRef
only.Expand description
Adds a property name to a JavaScript property name accumulator.
Parameter accumulator
: The accumulator object to which to add the property name.
Parameter propertyName
: The property name to add.
ยงSafety
accumulator
must be a valid pointer.property_name
must be a valid pointer.