From 817acebf242897bb1e70485b0bfda805a2bd3108 Mon Sep 17 00:00:00 2001 From: "Daniel D. Beck" Date: Fri, 24 Jan 2025 10:49:24 +0100 Subject: [PATCH] Set `IntlLegacyConstructedSymbol` to non-deprecated (#25749) These features are specified as a "Normative Optional" but not "Normative Optional, Legacy" behavior. Given the distinction that the spec makes between legacy and non-legacy parts of the language, these features should not be marked as deprecated. Spec: https://tc39.es/ecma402/#sec-chaindatetimeformat Spec: https://tc39.es/ecma262/#sec-conformance Spec: https://tc39.es/ecma402/#sec-chainnumberformat --- javascript/builtins/Intl/DateTimeFormat.json | 2 +- javascript/builtins/Intl/NumberFormat.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/javascript/builtins/Intl/DateTimeFormat.json b/javascript/builtins/Intl/DateTimeFormat.json index 52a66cb8cff555..6f6e4de8c535d3 100644 --- a/javascript/builtins/Intl/DateTimeFormat.json +++ b/javascript/builtins/Intl/DateTimeFormat.json @@ -159,7 +159,7 @@ "status": { "experimental": false, "standard_track": true, - "deprecated": true + "deprecated": false } } }, diff --git a/javascript/builtins/Intl/NumberFormat.json b/javascript/builtins/Intl/NumberFormat.json index 38bf7079ecdf7e..3810dd92c82ffe 100644 --- a/javascript/builtins/Intl/NumberFormat.json +++ b/javascript/builtins/Intl/NumberFormat.json @@ -152,7 +152,7 @@ "status": { "experimental": false, "standard_track": true, - "deprecated": true + "deprecated": false } } },