Skip to content

Commit abe370c

Browse files
committed
Merge branch 'codehag-patch-1' of https://github.com/tc39/tc39.github.io
2 parents 8c151ab + 393924d commit abe370c

File tree

1 file changed

+52
-14
lines changed

1 file changed

+52
-14
lines changed

_data/stage3.yml

Lines changed: 52 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
- title: globalThis
2-
id: proposal-global
3-
has_specification: true
4-
description: ECMAScript Proposal, specs, and reference implementation for globalThis
5-
authors:
6-
- Jordan Harband
7-
champions:
8-
- Jordan Harband
9-
tests:
10-
- https://github.com/tc39/test262/issues/765
11-
presented:
12-
- date: November 2018
13-
url: https://github.com/tc39/notes/blob/master/meetings/2018-11/nov-29.md#kevins-1pm-talk
14-
151
- title: Legacy RegExp features in JavaScript
162
id: proposal-regexp-legacy-features
173
has_specification: false
@@ -471,3 +457,55 @@
471457
472458
presented:
473459
- date: July 2019
460+
461+
- title: for-in mechanics
462+
id: proposal-for-in-order
463+
has_specification: true
464+
description: Partially specifying object enumeration order in JavaScript
465+
authors:
466+
- Kevin Gibbons
467+
champions:
468+
- Kevin Gibbons
469+
presented:
470+
- date: October 2019
471+
url: https://github.com/tc39/notes/blob/master/meetings/2019-10/october-1.md#for-in-order-for-stage-3
472+
473+
474+
- title: String.prototype.replaceAll
475+
id: proposal-string-replaceall
476+
has_specification: true
477+
description: ECMAScript proposal: String.prototype.replaceAll
478+
authors:
479+
- Peter Marshall
480+
- Jakob Gruber
481+
- Mathias Bynens
482+
champions:
483+
- Mathias Bynens
484+
example: >
485+
const queryString = 'q=query+string+parameters';
486+
const withSpaces = queryString.replaceAll('+', ' ');
487+
presented:
488+
- date: October 2019
489+
url: https://github.com/tc39/notes/blob/master/meetings/2019-10/october-2.md#stringprototypereplaceall-for-stage-3
490+
491+
492+
- title: Promise.any
493+
id: proposal-promise-any
494+
has_specification: true
495+
description: ECMAScript proposal: String.prototype.replaceAll
496+
authors:
497+
- Mathias Bynens
498+
- Kevin Gibbons
499+
- Sergey Rubanov
500+
champions:
501+
- Mathias Bynens
502+
example: >
503+
try {
504+
const first = await Promise.any(promises);
505+
// Any of the promises was fulfilled.
506+
} catch (error) {
507+
// All of the promises were rejected.
508+
}
509+
presented:
510+
- date: October 2019
511+
url: https://github.com/tc39/notes/blob/master/meetings/2019-10/october-3.md#promiseany-reprise

0 commit comments

Comments
 (0)