Object property descriptor.
Properties Jump to heading
Jump to headingname: stringProperty name or symbol description.
Jump to headingvalue: RemoteObject | undefinedThe value associated with the property.
Jump to headingwritable: boolean | undefinedTrue if the value associated with the property may be changed (data descriptors only).
Jump to headingget: RemoteObject | undefinedA function which serves as a getter for the property, or undefined if there is no getter (accessor descriptors only).
Jump to headingset: RemoteObject | undefinedA function which serves as a setter for the property, or undefined if there is no setter (accessor descriptors only).
Jump to headingconfigurable: booleanTrue if the type of this property descriptor may be changed and if the property may be deleted from the corresponding object.
Jump to headingenumerable: booleanTrue if this property shows up during enumeration of the properties on the corresponding object.
Jump to headingwasThrown: boolean | undefinedTrue if the result was thrown during the evaluation.
Jump to headingisOwn: boolean | undefinedTrue if the property is owned for the object.
Jump to headingsymbol: RemoteObject | undefinedProperty symbol object, if the property is of the symbol type.