ValuePropertyFlags#
- class ValuePropertyFlags#
Flags used when defining properties with object_define_property_data() and
object_define_property_accessor().
Fields#
- class ValuePropertyFlags
- CONFIGURABLE#
The type of the property descriptor may be changed and the property may be deleted from the corresponding object.
- ENUMERABLE#
The property shows up during enumeration of the properties on the corresponding object.
- WRITABLE#
The value associated with the property may be changed with an assignment operator. This doesn’t have any effect when passed to
object_define_property_accessor().