Skip to content

Commit

Permalink
Append "then" to If-step-with-substeps
Browse files Browse the repository at this point in the history
(6 occurrences from a recent commit)
  • Loading branch information
jmdyck committed Apr 15, 2016
1 parent 4701486 commit 407f8c2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -28964,7 +28964,7 @@ <h1>get RegExp.prototype.global</h1>
<emu-alg>
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.
Expand All @@ -28980,7 +28980,7 @@ <h1>get RegExp.prototype.ignoreCase</h1>
<emu-alg>
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.
Expand Down Expand Up @@ -29033,7 +29033,7 @@ <h1>get RegExp.prototype.multiline</h1>
<emu-alg>
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.
Expand Down Expand Up @@ -29135,7 +29135,7 @@ <h1>get RegExp.prototype.source</h1>
<emu-alg>
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.
Expand Down Expand Up @@ -29223,7 +29223,7 @@ <h1>get RegExp.prototype.sticky</h1>
<emu-alg>
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.
Expand Down Expand Up @@ -29268,7 +29268,7 @@ <h1>get RegExp.prototype.unicode</h1>
<emu-alg>
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.
Expand Down

0 comments on commit 407f8c2

Please sign in to comment.