Skip to content

Commit 223cd3a

Browse files
committed
Operator Overloading and Extensible Numeric Literals withdrawn, per 2023.11.28 TC39
1 parent ab2dd21 commit 223cd3a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

inactive-proposals.md

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ Inactive proposals are proposals that at one point were presented to the committ
3939
| [Function.pipe and flow][pipe-flow] | J.S. Choi | Withdrawn: [rejected for stage 1][pipe-flow-notes] |
4040
| [`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 |
4141
| [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 |
4244

4345
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.
4446

@@ -89,3 +91,7 @@ See also the [active proposals](README.md), [stage 1 proposals](stage-1-proposal
8991
[symbol-thenable-notes]: https://github.com/tc39/notes/blob/def2ee0c04bc91612576237314a4f3b1fe2edaef/meetings/2018-05/may-24.md#symbolthenable-for-stage-1-or-2
9092
[cleanup-some]: https://github.com/tc39/proposal-cleanup-some
9193
[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

stage-1-proposals.md

-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ Proposals follow [this process document](https://tc39.es/process-document/).
1818
| [`do` expressions][do] | Dave Herman | Kevin Gibbons | <sub>[June&nbsp;2020][do-notes]</sub> |
1919
| Change `Number.parseInt`/`parseFloat` to not coerce `null`/`undefined`/`NaN` (repo link TBD) | | Brendan Eich | <sub>[July&nbsp;2017][parseInt-to-parseFloat]</sub> |
2020
| [Binary AST][binary-ast] | Shu-yu Guo | Shu-yu Guo | <sub>[May&nbsp;2018][binary-ast-notes]</sub> |
21-
| [Extensible numeric literals][extensible-literals] | Daniel Ehrenberg | Daniel Ehrenberg | <sub>[September&nbsp;2020][extensible-literals-notes] |
2221
| [First-class protocols][protocols] | Michael Ficarra | Michael Ficarra | <sub>[July&nbsp;2018][protocols-notes]</sub> |
2322
| [Partial application][partial-application] | Ron Buckton | Ron Buckton | <sub>[July&nbsp;2018][partial-application-notes]</sub> |
2423
| [Cancellation API][cancel-api] | Ron Buckton | Ron Buckton<br />Brian Terlson | <sub>[July&nbsp;2018][cancel-api-notes]</sub> |
@@ -53,7 +52,6 @@ Proposals follow [this process document](https://tc39.es/process-document/).
5352
| [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&nbsp;2019][promise-pipelining-notes]</sub> |
5453
| [OOM Fails Fast][oom] | Mark Miller | Mark Miller | <sub>[December&nbsp;2019][oom-notes]</sub> |
5554
| [Array filtering][array-filtering] | Justin Ridgewell | Justin Ridgewell | <sub>[February&nbsp;2020][array-filtering-notes]</sub> |
56-
| [Operator overloading][overloading] | Daniel Ehrenberg | Daniel Ehrenberg | <sub>[December&nbsp;2019][overloading-notes]</sub> |
5755
| [Async initialization][async-init] | Bradley Farias | Bradley Farias | <sub>[February&nbsp;2020][async-init-notes]</sub> |
5856
| [Decimal][decimal] | Daniel Ehrenberg<br />Andrew Paprocki | Philip Chimento<br />Andrew Paprocki<br />Jesse Alama | <sub>[December&nbsp;2021][decimal-notes]</sub> |
5957
| [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&nbsp;2020][virtualize-notes]</sub> |
@@ -127,8 +125,6 @@ See also the [active proposals](README.md), [stage 0 proposals](stage-0-proposal
127125
[parseInt-to-parseFloat]: https://github.com/tc39/notes/blob/HEAD/meetings/2017-07/jul-26.md#13iib-consider-changing-numberparseint-and-numberparsefloat
128126
[binary-ast]: https://github.com/tc39/proposal-binary-ast
129127
[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
132128
[protocols]: https://github.com/tc39/proposal-first-class-protocols
133129
[protocols-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2018-07/july-25.md#updates-on-first-class-protocols
134130
[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
197193
[oom-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2019-12/december-5.md#update-on-oom-must-fail-fast
198194
[array-filtering]: https://github.com/tc39/proposal-array-filtering
199195
[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
202196
[decimal]: https://github.com/tc39/proposal-decimal
203197
[decimal-notes]: https://github.com/tc39/notes/blob/HEAD/meetings/2021-12/dec-15.md#decimals
204198
[virtualize]: https://github.com/Agoric/proposal-preserve-virtualizability

0 commit comments

Comments
 (0)