From b3138238ea320eb7ff7b3366512e9f07f818b745 Mon Sep 17 00:00:00 2001 From: Michael Dyck Date: Fri, 15 Apr 2016 17:04:53 -0400 Subject: [PATCH] Editorial: Append "then" to If-step-with-substeps (6 occurrences from a recent commit) This and previous commits close #452. --- spec.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spec.html b/spec.html index 979aefc2ce..35f383506d 100644 --- a/spec.html +++ b/spec.html @@ -28958,7 +28958,7 @@

get RegExp.prototype.global

1. Let _R_ be the *this* value. 1. If Type(_R_) is not Object, throw a *TypeError* exception. - 1. If _R_ does not have an [[OriginalFlags]] internal slot, + 1. If _R_ does not have an [[OriginalFlags]] internal slot, then 1. If SameValue(_R_, %RegExpPrototype%) is *true*, return *undefined*. 1. Otherwise, throw a *TypeError* exception. 1. Let _flags_ be the value of _R_'s [[OriginalFlags]] internal slot. @@ -28974,7 +28974,7 @@

get RegExp.prototype.ignoreCase

1. Let _R_ be the *this* value. 1. If Type(_R_) is not Object, throw a *TypeError* exception. - 1. If _R_ does not have an [[OriginalFlags]] internal slot, + 1. If _R_ does not have an [[OriginalFlags]] internal slot, then 1. If SameValue(_R_, %RegExpPrototype%) is *true*, return *undefined*. 1. Otherwise, throw a *TypeError* exception. 1. Let _flags_ be the value of _R_'s [[OriginalFlags]] internal slot. @@ -29027,7 +29027,7 @@

get RegExp.prototype.multiline

1. Let _R_ be the *this* value. 1. If Type(_R_) is not Object, throw a *TypeError* exception. - 1. If _R_ does not have an [[OriginalFlags]] internal slot, + 1. If _R_ does not have an [[OriginalFlags]] internal slot, then 1. If SameValue(_R_, %RegExpPrototype%) is *true*, return *undefined*. 1. Otherwise, throw a *TypeError* exception. 1. Let _flags_ be the value of _R_'s [[OriginalFlags]] internal slot. @@ -29129,7 +29129,7 @@

get RegExp.prototype.source

1. Let _R_ be the *this* value. 1. If Type(_R_) is not Object, throw a *TypeError* exception. - 1. If _R_ does not have an [[OriginalSource]] internal slot, + 1. If _R_ does not have an [[OriginalSource]] internal slot, then 1. If SameValue(_R_, %RegExpPrototype%) is *true*, return `"(?:)"`. 1. Otherwise, throw a *TypeError* exception. 1. Assert: _R_ has an [[OriginalFlags]] internal slot. @@ -29217,7 +29217,7 @@

get RegExp.prototype.sticky

1. Let _R_ be the *this* value. 1. If Type(_R_) is not Object, throw a *TypeError* exception. - 1. If _R_ does not have an [[OriginalFlags]] internal slot, + 1. If _R_ does not have an [[OriginalFlags]] internal slot, then 1. If SameValue(_R_, %RegExpPrototype%) is *true*, return *undefined*. 1. Otherwise, throw a *TypeError* exception. 1. Let _flags_ be the value of _R_'s [[OriginalFlags]] internal slot. @@ -29262,7 +29262,7 @@

get RegExp.prototype.unicode

1. Let _R_ be the *this* value. 1. If Type(_R_) is not Object, throw a *TypeError* exception. - 1. If _R_ does not have an [[OriginalFlags]] internal slot, + 1. If _R_ does not have an [[OriginalFlags]] internal slot, then 1. If SameValue(_R_, %RegExpPrototype%) is *true*, return *undefined*. 1. Otherwise, throw a *TypeError* exception. 1. Let _flags_ be the value of _R_'s [[OriginalFlags]] internal slot.