Skip to content

Commit

Permalink
Meta: Update ecmarkup and ecma262-biblio
Browse files Browse the repository at this point in the history
`CreateIterResultObject` has been renamed to
`CreateIteratorResultObject`.
  • Loading branch information
anba authored and ryzokuken committed Nov 6, 2024
1 parent d557e03 commit 5ea95f8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
30 changes: 15 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"license": "SEE LICENSE IN https://tc39.es/ecma402/#sec-copyright-and-software-license",
"homepage": "https://tc39.es/ecma402/",
"dependencies": {
"ecmarkup": "^19.0.0",
"@tc39/ecma262-biblio": "2.1.2742"
"ecmarkup": "^20.0.0",
"@tc39/ecma262-biblio": "=2.1.2799"
}
}
4 changes: 2 additions & 2 deletions spec/segmenter.html
Original file line number Diff line number Diff line change
Expand Up @@ -320,11 +320,11 @@ <h1>%IntlSegmentIteratorPrototype%.next ( )</h1>
1. Let _startIndex_ be _iterator_.[[IteratedStringNextSegmentCodeUnitIndex]].
1. Let _len_ be the length of _string_.
1. If _startIndex__len_, then
1. Return CreateIterResultObject(*undefined*, *true*).
1. Return CreateIteratorResultObject(*undefined*, *true*).
1. Let _endIndex_ be FindBoundary(_segmenter_, _string_, _startIndex_, ~after~).
1. Set _iterator_.[[IteratedStringNextSegmentCodeUnitIndex]] to _endIndex_.
1. Let _segmentData_ be CreateSegmentDataObject(_segmenter_, _string_, _startIndex_, _endIndex_).
1. Return CreateIterResultObject(_segmentData_, *false*).
1. Return CreateIteratorResultObject(_segmentData_, *false*).
</emu-alg>
</emu-clause>

Expand Down

0 comments on commit 5ea95f8

Please sign in to comment.