enum JSCObject::Accessor::Accessibility
Overview
Accessibility specifics how a JavaScript property can be accessed
Defined in:
components/jsc_object/accessor.crEnum Members
- 
        Configurable = 
1 - 
        
The type of the property descriptor may be changed and the property may be deleted from the corresponding object.
 - 
        Enumerable = 
2 - 
        
The property shows up during enumeration of the properties on the corresponding object.
 - 
        Writable = 
4 - 
        
The value associated with the property may be changed with an assignment operator.