From 21d2afeafa1cbf06493edd156b66f52987a2314b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Sep 2023 21:34:24 +0100 Subject: [PATCH] Bump test262 from `1a0b9d2` to `1db9a49` (#3267) * Bump test262 from `1a0b9d2` to `1db9a49` Bumps [test262](https://github.com/tc39/test262) from `1a0b9d2` to `1db9a49`. - [Commits](https://github.com/tc39/test262/compare/1a0b9d23f241abc2f0abf73cc397f3390c7d9960...1db9a49eb93fd99f97100bf8ebceabf4d45949e3) --- updated-dependencies: - dependency-name: test262 dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Add feature `promise-with-resolvers` --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jedel1043 --- boa_tester/src/edition.rs | 4 ++++ test262 | 2 +- test_ignore.toml | 4 +++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/boa_tester/src/edition.rs b/boa_tester/src/edition.rs index 1178ad8091..4fad7c49ec 100644 --- a/boa_tester/src/edition.rs +++ b/boa_tester/src/edition.rs @@ -80,6 +80,10 @@ static FEATURE_EDITION: phf::Map<&'static str, SpecEdition> = phf::phf_map! { // https://github.com/tc39/proposal-iterator-helpers "iterator-helpers" => SpecEdition::ESNext, + // Promise.withResolvers + // https://github.com/tc39/proposal-promise-with-resolvers + "promise-with-resolvers" => SpecEdition::ESNext, + // Part of the next ES15 edition "Atomics.waitAsync" => SpecEdition::ESNext, "regexp-v-flag" => SpecEdition::ESNext, diff --git a/test262 b/test262 index 1a0b9d23f2..1db9a49eb9 160000 --- a/test262 +++ b/test262 @@ -1 +1 @@ -Subproject commit 1a0b9d23f241abc2f0abf73cc397f3390c7d9960 +Subproject commit 1db9a49eb93fd99f97100bf8ebceabf4d45949e3 diff --git a/test_ignore.toml b/test_ignore.toml index dc4967b8a2..e3ea1c110f 100644 --- a/test_ignore.toml +++ b/test_ignore.toml @@ -15,7 +15,6 @@ features = [ "Intl.RelativeTimeFormat", "Intl-enumeration", - ### Pending proposals # https://github.com/tc39/proposal-intl-locale-info @@ -66,6 +65,9 @@ features = [ # https://github.com/tc39/proposal-iterator-helpers "iterator-helpers", + # https://github.com/tc39/proposal-promise-with-resolvers + "promise-with-resolvers", + ### Non-standard "caller",