Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move named capture groups to finished proposals #102

Merged
merged 1 commit into from
Jan 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ This list contains only stage 1 proposals and higher that have not yet been with
| | [`import()`][dynamic-import] | Domenic Denicola | Domenic Denicola | [:question:][tests-dynamic-import] |
| | [RegExp Lookbehind Assertions][lookbehind] | Gorkem Yakin, Nozomu Katō, Daniel Ehrenberg | Daniel Ehrenberg, Mathias Bynens | [:white_check_mark:][tests-lookbehind] |
| | [RegExp Unicode Property Escapes][unicode-escapes] | Mathias Bynens | Brian Terlson, Daniel Ehrenberg, Mathias Bynens | [:white_check_mark:][tests-unicode-escapes] |
| :rocket: | [RegExp named capture groups][named-groups] | Gorkem Yakin, Daniel Ehrenberg | Daniel Ehrenberg, Brian Terlson | [:white_check_mark:][tests-named-groups] |
| | [Legacy RegExp features in JavaScript][regexp-legacy] | Claude Pache | Mark Miller, Claude Pache | [:white_check_mark:][tests-regexp-legacy] |
| :rocket: | [`Promise.prototype.finally`][finally] | Jordan Harband | Jordan Harband | [:construction:][tests-finally] |
| | [`BigInt`][bigint] | Daniel Ehrenberg | Daniel Ehrenberg | [:construction:][tests-bigint] |
Expand Down Expand Up @@ -112,7 +111,6 @@ Note that as part of the onboarding process your repository name may be normaliz
[dynamic-import]: https://github.com/tc39/proposal-dynamic-import
[lookbehind]: https://github.com/tc39/proposal-regexp-lookbehind
[unicode-escapes]: https://github.com/tc39/proposal-regexp-unicode-property-escapes
[named-groups]: https://github.com/tc39/proposal-regexp-named-groups
[regexp-legacy]: https://github.com/tc39/proposal-regexp-legacy-features
[finally]: https://github.com/tc39/proposal-promise-finally
[bigint]: https://github.com/tc39/proposal-bigint
Expand Down Expand Up @@ -166,7 +164,6 @@ Note that as part of the onboarding process your repository name may be normaliz
[tests-dynamic-import]: https://github.com/tc39/test262/issues/1164
[tests-lookbehind]: https://github.com/tc39/test262/issues/999
[tests-unicode-escapes]: https://github.com/tc39/test262/issues/1014
[tests-named-groups]: https://github.com/tc39/test262/issues/998
[tests-regexp-legacy]: https://github.com/tc39/test262/issues/1165
[tests-finally]: https://github.com/tc39/test262/issues/866
[tests-bigint]: https://github.com/tc39/test262/issues/1056
Expand Down
29 changes: 16 additions & 13 deletions finished-proposals.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@

Finished proposals are proposals that have reached stage 4, and are included in the [latest draft](https://tc39.github.io/ecma262/) of the specification.

| Proposal | Author | Champion(s) | TC39 meeting notes | Expected Publication Year |
| ------------------------------------------------------------------------ | ---------------------------------- | ---------------------------------- | ----------------------------------------- | ------------------------- |
| [`Array.prototype.includes`][array-includes] | Domenic Denicola | Domenic Denicola, Rick Waldron | [November 2015][array-includes-notes] | 2016 |
| [Exponentiation operator][exponentiation] | Rick Waldron | Rick Waldron | [January 2016][exponentiation-notes] | 2016 |
| [`Object.values`/`Object.entries`][object-values-entries] | Jordan Harband | Jordan Harband | [March 2016][object-values-entries-notes] | 2017 |
| [String padding][string-padding] | Jordan Harband | Jordan Harband & Rick Waldron | [May 2016][string-padding-notes] | 2017 |
| [`Object.getOwnPropertyDescriptors`][object-gopds] | Jordan Harband & Andrea Giammarchi | Jordan Harband & Andrea Giammarchi | [May 2016][object-gopds-notes] | 2017 |
| [Trailing commas in function parameter lists and calls][function-commas] | Jeff Morrison | Jeff Morrison | [July 2016][function-commas-notes] | 2017 |
| [Async functions][async-await] | Brian Terlson | Brian Terlson | [July 2016][async-await-notes] | 2017 |
| [Shared memory and atomics][atomics] | Lars T Hansen | Lars T Hansen | [January 2017][atomics-notes] | 2017 |
| [Lifting template literal restriction][template-literal-lift] | Tim Disney | Tim Disney | [March 2017][template-literal-lift-notes] | 2018 |
| [`s` (`dotAll`) flag for regular expressions][dot-all] | Mathias Bynens | Brian Terlson, Mathias Bynens | [November 2017][dot-all-notes] | 2018 |
| [Rest/Spread Properties][object-rest-spread] | Sebastian Markbåge | Sebastian Markbåge | January 2018 | 2018
| Proposal | Author | Champion(s) | TC39 meeting notes | Expected Publication Year |
| ------------------------------------------------------------------------ | ---------------------------------- | ----------------------------------------------- | ----------------------------------------- | ------------------------- |
| [`Array.prototype.includes`][array-includes] | Domenic Denicola | Domenic Denicola, Rick Waldron | [November 2015][array-includes-notes] | 2016 |
| [Exponentiation operator][exponentiation] | Rick Waldron | Rick Waldron | [January 2016][exponentiation-notes] | 2016 |
| [`Object.values`/`Object.entries`][object-values-entries] | Jordan Harband | Jordan Harband | [March 2016][object-values-entries-notes] | 2017 |
| [String padding][string-padding] | Jordan Harband | Jordan Harband & Rick Waldron | [May 2016][string-padding-notes] | 2017 |
| [`Object.getOwnPropertyDescriptors`][object-gopds] | Jordan Harband & Andrea Giammarchi | Jordan Harband & Andrea Giammarchi | [May 2016][object-gopds-notes] | 2017 |
| [Trailing commas in function parameter lists and calls][function-commas] | Jeff Morrison | Jeff Morrison | [July 2016][function-commas-notes] | 2017 |
| [Async functions][async-await] | Brian Terlson | Brian Terlson | [July 2016][async-await-notes] | 2017 |
| [Shared memory and atomics][atomics] | Lars T Hansen | Lars T Hansen | [January 2017][atomics-notes] | 2017 |
| [Lifting template literal restriction][template-literal-lift] | Tim Disney | Tim Disney | [March 2017][template-literal-lift-notes] | 2018 |
| [`s` (`dotAll`) flag for regular expressions][dot-all] | Mathias Bynens | Brian Terlson, Mathias Bynens | [November 2017][dot-all-notes] | 2018 |
| [RegExp named capture groups][named-groups] | Gorkem Yakin, Daniel Ehrenberg | Daniel Ehrenberg, Brian Terlson, Mathias Bynens | [November 2017][named-groups-notes] | 2018 |
| [Rest/Spread Properties][object-rest-spread] | Sebastian Markbåge | Sebastian Markbåge | January 2018 | 2018

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

Expand All @@ -38,4 +39,6 @@ See also the [stage 0 proposals](stage-0-proposals.md), [active proposals](READM
[template-literal-lift-notes]: https://github.com/rwaldron/tc39-notes/blob/master/es8/2017-03/mar-21.md#10ia-template-literal-updates
[dot-all]: https://github.com/tc39/proposal-regexp-dotall-flag
[dot-all-notes]: https://github.com/rwaldron/tc39-notes/blob/master/es8/2017-11/nov-28.md#9ie-regexp-dotall-status-update
[named-groups]: https://github.com/tc39/proposal-regexp-named-groups
[named-groups-notes]: https://github.com/rwaldron/tc39-notes/blob/master/es8/2017-11/nov-28.md#9if-regexp-named-captures-status-update
[object-rest-spread]: https://github.com/tc39/proposal-object-rest-spread