From 494cc756a813a782f995f4da4d9dc642dd8955bc Mon Sep 17 00:00:00 2001 From: Adam Klein Date: Tue, 9 Aug 2016 11:37:18 -0700 Subject: [PATCH] Simplify description of CreateImmutableBinding The S argument is only used to make decisions about sets occuring after initialization, so the mention of "before initialization" here was spurious. --- spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.html b/spec.html index 7b05cff3f3..e4cb928c75 100644 --- a/spec.html +++ b/spec.html @@ -4646,7 +4646,7 @@

Environment Records

CreateImmutableBinding(N, S) - Create a new but uninitialized immutable binding in an Environment Record. The String value _N_ is the text of the bound name. If _S_ is *true* then attempts to access the value of the binding before it is initialized or set it after it has been initialized will always throw an exception, regardless of the strict mode setting of operations that reference that binding. + Create a new but uninitialized immutable binding in an Environment Record. The String value _N_ is the text of the bound name. If _S_ is *true* then attempts to set it after it has been initialized will always throw an exception, regardless of the strict mode setting of operations that reference that binding.