+6
-6
lines changedFilter options
+6
-6
lines changed Original file line number Diff line number Diff line change
@@ -39,6 +39,8 @@ Inactive proposals are proposals that at one point were presented to the committ
39
39
| [Function.pipe and flow][pipe-flow] | J.S. Choi | Withdrawn: [rejected for stage 1][pipe-flow-notes] |
40
40
| [`Symbol.thenable`][symbol-thenable] | Gus Caplan<br />Jordan Harband<br />Myles Borins | Withdrawn; changing thenability on Module Namespace objects is not web compatible, and allowing non-Promise use of "then" is not worth slowing down all Promise operations |
41
41
| [WeakRefs `cleanupSome`][cleanup-some] | Yulia Startsev<br />Daniel Ehrenberg | Withdrawn; subsumed by WebAssembly JS Promise Integration, which avoids the long task issue |
42
+
| [Operator overloading][overloading] | Daniel Ehrenberg | Withdrawn |
43
+
| [Extensible numeric literals][extensible-literals] | Daniel Ehrenberg | Withdrawn |
42
44
43
45
See also the [active proposals](README.md), [stage 1 proposals](stage-1-proposals.md), [stage 0 proposals](stage-0-proposals.md), and [finished proposals](finished-proposals.md) documents.
44
46
@@ -89,3 +91,7 @@ See also the [active proposals](README.md), [stage 1 proposals](stage-1-proposal
89
91
[symbol-thenable-notes]: https://github.com/tc39/notes/blob/def2ee0c04bc91612576237314a4f3b1fe2edaef/meetings/2018-05/may-24.md#symbolthenable-for-stage-1-or-2
90
92
[cleanup-some]: https://github.com/tc39/proposal-cleanup-some
91
93
[cleanup-some-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2020-07/july-21.md#weakrefs-for-stage-4--cleanupsome-for-stage-23
94
+
[overloading]: https://github.com/tc39/proposal-operator-overloading
95
+
[overloading-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-5.md#operator-overloading-for-stage-1
96
+
[extensible-literals]: https://github.com/tc39/proposal-extended-numeric-literals
97
+
[extensible-literals-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2020-09/sept-21.md#numeric-literal-suffixes-update-separate-namespace-version
Original file line number Diff line number Diff line change
@@ -18,7 +18,6 @@ Proposals follow [this process document](https://tc39.es/process-document/).
18
18
| [`do` expressions][do] | Dave Herman | Kevin Gibbons | <sub>[June 2020][do-notes]</sub> |
19
19
| Change `Number.parseInt`/`parseFloat` to not coerce `null`/`undefined`/`NaN` (repo link TBD) | | Brendan Eich | <sub>[July 2017][parseInt-to-parseFloat]</sub> |
20
20
| [Binary AST][binary-ast] | Shu-yu Guo | Shu-yu Guo | <sub>[May 2018][binary-ast-notes]</sub> |
21
-
| [Extensible numeric literals][extensible-literals] | Daniel Ehrenberg | Daniel Ehrenberg | <sub>[September 2020][extensible-literals-notes] |
22
21
| [First-class protocols][protocols] | Michael Ficarra | Michael Ficarra | <sub>[July 2018][protocols-notes]</sub> |
23
22
| [Partial application][partial-application] | Ron Buckton | Ron Buckton | <sub>[July 2018][partial-application-notes]</sub> |
24
23
| [Cancellation API][cancel-api] | Ron Buckton | Ron Buckton<br />Brian Terlson | <sub>[July 2018][cancel-api-notes]</sub> |
@@ -53,7 +52,6 @@ Proposals follow [this process document](https://tc39.es/process-document/).
53
52
| [Wavy Dot: Syntactic Support for Promise Pipelining][promise-pipelining] | Mark Miller<br />Chip Morningstar<br />Michael Fig | Mark Miller<br />Chip Morningstar<br />Michael Fig | <sub>[December 2019][promise-pipelining-notes]</sub> |
54
53
| [OOM Fails Fast][oom] | Mark Miller | Mark Miller | <sub>[December 2019][oom-notes]</sub> |
55
54
| [Array filtering][array-filtering] | Justin Ridgewell | Justin Ridgewell | <sub>[February 2020][array-filtering-notes]</sub> |
56
-
| [Operator overloading][overloading] | Daniel Ehrenberg | Daniel Ehrenberg | <sub>[December 2019][overloading-notes]</sub> |
57
55
| [Async initialization][async-init] | Bradley Farias | Bradley Farias | <sub>[February 2020][async-init-notes]</sub> |
58
56
| [Decimal][decimal] | Daniel Ehrenberg<br />Andrew Paprocki | Philip Chimento<br />Andrew Paprocki<br />Jesse Alama | <sub>[December 2021][decimal-notes]</sub> |
59
57
| [Preserve Host Virtualizability][virtualize] | Mark Miller<br />J.F. Paradis<br />Caridy Patiño<br />Dan Finley<br />Alan Schmitt | Mark Miller<br />J.F. Paradis<br />Caridy Patiño<br />Dan Finley<br />Alan Schmitt | <sub>[February 2020][virtualize-notes]</sub> |
@@ -127,8 +125,6 @@ See also the [active proposals](README.md), [stage 0 proposals](stage-0-proposal
127
125
[parseInt-to-parseFloat]: https://github.com/tc39/notes/blob/HEAD/meetings/2017-07/jul-26.md#13iib-consider-changing-numberparseint-and-numberparsefloat
128
126
[binary-ast]: https://github.com/tc39/proposal-binary-ast
129
127
[binary-ast-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2018-05/may-24.md#binary-ast
130
-
[extensible-literals]: https://github.com/tc39/proposal-extended-numeric-literals
131
-
[extensible-literals-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2020-09/sept-21.md#numeric-literal-suffixes-update-separate-namespace-version
132
128
[protocols]: https://github.com/tc39/proposal-first-class-protocols
133
129
[protocols-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2018-07/july-25.md#updates-on-first-class-protocols
134
130
[partial-application]: https://github.com/tc39/proposal-partial-application
@@ -197,8 +193,6 @@ See also the [active proposals](README.md), [stage 0 proposals](stage-0-proposal
197
193
[oom-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-5.md#update-on-oom-must-fail-fast
198
194
[array-filtering]: https://github.com/tc39/proposal-array-filtering
199
195
[array-filtering-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2020-02/february-5.md#status-update-on-array-filtering
200
-
[overloading]: https://github.com/tc39/proposal-operator-overloading
201
-
[overloading-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-5.md#operator-overloading-for-stage-1
202
196
[decimal]: https://github.com/tc39/proposal-decimal
203
197
[decimal-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2021-12/dec-15.md#decimals
204
198
[virtualize]: https://github.com/Agoric/proposal-preserve-virtualizability
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4