Skip to content

Commit 74d62bc

Browse files
committed
bump test262 commit hash
1 parent 868d13f commit 74d62bc

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

test262_config.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
commit = "a073f479f80b336256b7fc4e04700c827293e2fe"
1+
commit = "ccf301650fdcbdbf125241a936b7017f19e68b36"
22

33
[ignored]
44
# Not implemented yet:
@@ -53,6 +53,14 @@ features = [
5353
# test262 special specifier
5454
"source-phase-imports-module-source",
5555

56+
# Immutable Array Buffer
57+
# https://github.com/tc39/proposal-immutable-arraybuffer
58+
"immutable-arraybuffer",
59+
60+
# Non-extensible Applies to Private
61+
# https://github.com/tc39/proposal-nonextensible-applies-to-private
62+
"nonextensible-applies-to-private",
63+
5664
### Non-standard
5765
"caller",
5866
]

tests/tester/src/edition.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)