The instance on which to set a private field value.
A WeakMap used to store the private field value for an instance.
The value to store in the private field.
Optional
kind: "f"Either "f"
for a field, "a"
for an accessor, or "m"
for a method.
If state
doesn't have an entry for receiver
.
Emulates writing to a private static field.
The object on which to set the private static field.
The class constructor containing the definition of the private static field.
The value to store in the private field.
Either "f"
for a field, "a"
for an accessor, or "m"
for a method.
The descriptor that holds the static field value.
If receiver
is not state
.
Emulates writing to a private instance "set" accessor.
The instance on which to evaluate the private instance "set" accessor.
A WeakSet used to verify an instance supports the private "set" accessor.
The value to store in the private accessor.
Either "f"
for a field, "a"
for an accessor, or "m"
for a method.
The "set" accessor function to evaluate.
If state
doesn't have an entry for receiver
.
Emulates writing to a private static "set" accessor.
The object on which to evaluate the private static "set" accessor.
The class constructor containing the definition of the static "set" accessor.
The value to store in the private field.
Either "f"
for a field, "a"
for an accessor, or "m"
for a method.
The "set" accessor function to evaluate.
If receiver
is not state
.
Generated using TypeDoc
Emulates writing to a private instance field.