Skip to content

Commit

Permalink
Remove unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankYFTang committed Nov 16, 2021
1 parent 1753c6d commit 2c542b3
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -35250,17 +35250,6 @@ <h1>Notation</h1>
A <em>Matcher</em> is an Abstract Closure that takes two arguments&mdash;a State and a Continuation&mdash;and returns a MatchResult result. A Matcher attempts to match a middle subpattern (specified by the closure's captured values) of the pattern against _Input_, starting at the intermediate state given by its State argument. The Continuation argument should be a closure that matches the rest of the pattern. After matching the subpattern of a pattern to obtain a new State, the Matcher then calls Continuation on that new State to test if the rest of the pattern can match as well. If it can, the Matcher returns the State returned by Continuation; if not, the Matcher may try different choices at its choice points, repeatedly calling Continuation until it either succeeds or all possibilities have been exhausted.
</li>
</ul>
<p style="background: yellow">
[The following is just an anchor for a comment thread. Ignore this text for the spec.]
</p>
<ul style="background: yellow">
<li>
When the EitherUnicode flag is false, then a CharSet may only contain code unit values; otherwise, when the Unicode flag is true and the UnicodeSets flag is false, then a CharSet may only contain single code points; otherwise (when the UnicodeSets flag is true), then a CharSet may contain strings. “Strings” in this context means sequences of Unicode code points, in particular the empty String and strings with more than 1 code point. A string of length 1 is the same as a single character.
</li>
</ul>
<p style="background: yellow">
[End ignore]
</p>
</emu-clause>

<emu-clause id="sec-pattern">
Expand Down

0 comments on commit 2c542b3

Please sign in to comment.