Skip to content

Commit f0adbe1

Browse files
committed
RegExp Match Indices to stage 4, per 2021.05.25 TC39
1 parent 26cd845 commit f0adbe1

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Stage 2 indicates that the committee expects these features to be developed and
2020
| [Legacy RegExp features in JavaScript][regexp-legacy] | Claude Pache | Mark Miller<br />Claude Pache | [:white_check_mark:][tests-regexp-legacy] | <sub>[May&nbsp;2017][regexp-legacy-notes]</sub> |
2121
| [Hashbang Grammar][hashbang-grammar] | Bradley Farias | Bradley Farias | [:white_check_mark:][tests-hashbang-grammar] | <sub>[November&nbsp;2018][hashbang-notes]</sub> |
2222
| [Top-level `await`][await] | Myles Borins | Myles Borins | [:white_check_mark:][tests-await] | <sub>[June&nbsp;2019][await-notes]</sub> |
23-
| [RegExp Match Indices][regex-match-indices] | Ron Buckton | Ron Buckton | [:white_check_mark:][tests-regexp-match-indices] | <sub>[November&nbsp;2020][regex-match-indices-notes]</sub> |
2423
| [`Atomics.waitAsync`][nonblocking] | Lars Hansen | Shu-yu Guo<br />Lars Hansen | [:white_check_mark:][tests-nonblocking] | <sub>[December&nbsp;2019][nonblocking-notes]</sub> |
2524
| [`.at()`][at] | Shu-yu Guo<br />Tab Atkins | Shu-yu Guo<br />Tab Atkins | [:white_check_mark:][tests-at] | <sub>[November&nbsp;2020][at-notes]</sub> |
2625
| [Import Assertions][import-assertions] | Myles Borins<br />Sven Sauleau<br />Dan Clark<br />Daniel Ehrenberg | Myles Borins<br />Sven Sauleau<br />Dan Clark<br />Daniel Ehrenberg | :question: | <sub>[November&nbsp;2020][import-assertions-notes]</sub> |
@@ -106,9 +105,6 @@ Note that as part of the onboarding process your repository name may be normaliz
106105
[richer-keys-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2019-01/jan-30.md#richer-keys-for-stage-2
107106
[unicode-sequence-properties]: https://github.com/tc39/proposal-regexp-unicode-sequence-properties
108107
[unicode-sequence-properties-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2019-10/october-2.md#update-on-sequence-property-escapes-in-unicode-regular-expressions
109-
[regex-match-indices]: https://github.com/tc39/proposal-regexp-match-indices
110-
[regex-match-indices-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2020-11/nov-16.md#regexp-matches-indices-jsc-implementation-feedback
111-
[tests-regexp-match-indices]: https://github.com/tc39/test262/pull/2309
112108
[resource-management]: https://github.com/tc39/proposal-explicit-resource-management
113109
[resource-management-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2020-02/february-5.md#updates-on-explicit-resource-management
114110
[standard-library]: https://github.com/tc39/proposal-javascript-standard-library

finished-proposals.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,11 @@ Finished proposals are proposals that have reached stage 4, and are included in
3939
| [`import.meta`][import-meta] | Domenic Denicola | Gus Caplan | [March 2020][import-meta-notes] | 2020 |
4040
| [`String.prototype.replaceAll`][replace-all] | Peter Marshall<br />Jakob Gruber<br />Mathias Bynens | Mathias Bynens | [June 2020][replace-all-notes] | 2021 |
4141
| [`Promise.any`][promise-any] | Mathias Bynens<br />Kevin Gibbons<br />Sergey Rubanov | Mathias Bynens | [July 2020][promise-any-notes] | 2021 |
42-
| [WeakRefs][weakrefs] | Dean Tribble<br />Sathya Gunasekaran | Dean Tribble<br />Mark Miller<br />Till Schneidereit<br />Sathya Gunasekaran<br />Daniel Ehrenberg | [July 2020][weakrefs-notes] | 2021 |
42+
| [WeakRefs][weakrefs] | Dean Tribble<br />Sathya Gunasekaran | Dean Tribble<br />Mark Miller<br />Till Schneidereit<br />Sathya Gunasekaran<br />Daniel Ehrenberg | [July 2020][weakrefs-notes] | 2021 |
4343
| [Logical Assignment Operators][logical-assignment] | Justin Ridgewell | Justin Ridgewell <br /> Hemanth HM | [July 2020][logical-assignment-notes] | 2021 |
44-
| [Numeric separators][numeric_separators] | Sam Goto<br />Rick Waldron | Sam Goto<br />Rick Waldron <br />Leo Balter | [July 2020][numeric_separators-notes] | 2021 |
44+
| [Numeric separators][numeric_separators] | Sam Goto<br />Rick Waldron | Sam Goto<br />Rick Waldron <br />Leo Balter | [July 2020][numeric_separators-notes] | 2021 |
4545
| Class Fields ([Private instance methods and accessors][private-methods], [Class Public Instance Fields & Private Instance Fields][class-fields], [Static class fields and private static methods][static-class-features]) | Daniel Ehrenberg | Daniel Ehrenberg<br />Kevin Gibbons | [April 2021][class-fields-notes] | 2022 |
46+
| [RegExp Match Indices][regex-match-indices] | Ron Buckton | Ron Buckton | May 2021 | 2022 |
4647

4748
See also the [active proposals](README.md), [stage 1 proposals](stage-1-proposals.md), [stage 0 proposals](stage-0-proposals.md), and [inactive proposals](inactive-proposals.md) documents.
4849

@@ -126,3 +127,5 @@ See also the [active proposals](README.md), [stage 1 proposals](stage-1-proposal
126127
[class-fields]: https://github.com/tc39/proposal-class-fields
127128
[static-class-features]: https://github.com/tc39/proposal-static-class-features
128129
[class-fields-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2021-04/apr-19.md#class-fields-private-methods-and-static-class-features-for-stage-4
130+
[regex-match-indices]: https://github.com/tc39/proposal-regexp-match-indices
131+
[regex-match-indices-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2020-11/nov-16.md#regexp-matches-indices-jsc-implementation-feedback

0 commit comments

Comments
 (0)