Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -11105,7 +11105,7 @@ <h1>
<dd>a Global Environment Record _envRec_</dd>

<dt>description</dt>
<dd>It attempts to change the bound value of the current binding of the identifier whose name is _N_ to the value _V_. If the binding is an immutable binding and _S_ is *true*, a *TypeError* is thrown. A property named _N_ normally already exists but if it does not or is not currently writable, error handling is determined by _S_.</dd>
<dd>It attempts to change the bound value of the current binding of the identifier whose name is _N_ to the value _V_. If the binding is an immutable binding and _S_ is *true*, a *TypeError* is thrown. A binding named _N_ normally already exists but if it does not or is not currently writable, error handling is determined by _S_.</dd>
</dl>
<emu-alg>
1. Let _DclRec_ be _envRec_.[[DeclarativeRecord]].
Expand All @@ -11128,7 +11128,7 @@ <h1>
<dd>a Global Environment Record _envRec_</dd>

<dt>description</dt>
<dd>It returns the value of its bound identifier whose name is _N_. If the binding is an uninitialized binding throw a *ReferenceError* exception. A property named _N_ normally already exists but if it does not or is not currently writable, error handling is determined by _S_.</dd>
<dd>It returns the value of its bound identifier whose name is _N_. If the binding is an uninitialized binding, it will throw a *ReferenceError* exception. A binding named _N_ normally already exists but if it does not, error handling is determined by _S_.</dd>
</dl>
<emu-alg>
1. Let _DclRec_ be _envRec_.[[DeclarativeRecord]].
Expand Down
Loading