diff --git a/spec/index.html b/spec/index.html index 0bdfeef..6075dd2 100644 --- a/spec/index.html +++ b/spec/index.html @@ -1630,6 +1630,55 @@
+ Internal Method + | ++ Signature + | ++ Description + | +
---|---|---|
+ [[Get]] + | ++ (_propertyKey_, _Receiver_, _unsafe_) → any + | ++ Return the value of the property whose key is _propertyKey_ from this object. If any ECMAScript code must be executed to retrieve the property value, _Receiver_ is used as the *this* value when evaluating the code. If this operation is to be performed from within an `unsafe` block, _unsafe_ will be *true*; otherwise, _unsafe_ will be *false*. + | +
+ [[Set]] + | ++ (_propertyKey_, _value_, _Receiver_, _unsafe_) → Boolean + | ++ Set the value of the property whose key is _propertyKey_ to _value_. If any ECMAScript code must be executed to set the property value, _Receiver_ is used as the *this* value when evaluating the code. If this operation is to be performed from within an `unsafe` block, _unsafe_ will be *true*; otherwise, _unsafe_ will be *false*. Returns *true* if the property value was set or *false* if it could not be set. + | +
DRAFT NOTE: Except where specified, it is assumed that existing invocations of [[Get]] or [[Set]] that do not currently pass a value for the _unsafe_ parameter are assumed to pass *false*. These call sites will be updated when the fully integrated specification text becomes available during Stage 2.
+