struct Protocol::Runtime::PrivatePropertyDescriptor
- Protocol::Runtime::PrivatePropertyDescriptor
- Struct
- Value
- Object
Overview
Object private field descriptor.
Included Modules
- JSON::Serializable
Defined in:
protocol/runtime.crConstructors
Instance Method Summary
-
#get : RemoteObject | Nil
A function which serves as a getter for the private property, or
undefined
if there is no getter (accessor descriptors only). -
#name : String
Private property name.
-
#set : RemoteObject | Nil
A function which serves as a setter for the private property, or
undefined
if there is no setter (accessor descriptors only). -
#value : RemoteObject | Nil
The value associated with the private property.
Constructor Detail
Instance Method Detail
def get : RemoteObject | Nil
#
A function which serves as a getter for the private property,
or undefined
if there is no getter (accessor descriptors only).
def set : RemoteObject | Nil
#
A function which serves as a setter for the private property,
or undefined
if there is no setter (accessor descriptors only).