enum JSCObject::Accessor::Accessibility

Overview

Accessibility specifics how a JavaScript property can be accessed

Defined in:

components/jsc_object/accessor.cr

Enum 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.

Instance Method Summary

Instance Method Detail

def configurable? #

[View source]
def enumerable? #

[View source]
def none? #

[View source]
def writable? #

[View source]