@@ -87,6 +87,14 @@ static FEATURE_EDITION: phf::Map<&'static str, SpecEdition> = phf::phf_map! {
8787 // https://github.com/tc39/proposal-atomics-microwait
8888 "Atomics.pause" => SpecEdition :: ESNext ,
8989
90+ // Immutable Array Buffer
91+ // https://github.com/tc39/proposal-immutable-arraybuffer
92+ "immutable-arraybuffer" => SpecEdition :: ESNext ,
93+
94+ // Non-extensible Applies to Private
95+ // https://github.com/tc39/proposal-nonextensible-applies-to-private
96+ "nonextensible-applies-to-private" => SpecEdition :: ESNext ,
97+
9098 // ===== Next ES version =====
9199
92100 // Error.isError
@@ -240,6 +248,8 @@ static FEATURE_EDITION: phf::Map<&'static str, SpecEdition> = phf::phf_map! {
240248 "rest-parameters" => SpecEdition :: ES6 ,
241249 "Set" => SpecEdition :: ES6 ,
242250 "SharedArrayBuffer" => SpecEdition :: ES8 ,
251+ "stable-array-sort" => SpecEdition :: ES10 ,
252+ "stable-typedarray-sort" => SpecEdition :: ES10 ,
243253 "string-trimming" => SpecEdition :: ES10 ,
244254 "String.fromCodePoint" => SpecEdition :: ES6 ,
245255 "String.prototype.at" => SpecEdition :: ES13 ,
0 commit comments