Skip to content

Commit

Permalink
Add feature promise-with-resolvers
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Sep 13, 2023
1 parent ab70239 commit 15c01cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions boa_tester/src/edition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 3 additions & 1 deletion test_ignore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ features = [
"Intl.RelativeTimeFormat",
"Intl-enumeration",


### Pending proposals

# https://github.com/tc39/proposal-intl-locale-info
Expand Down Expand Up @@ -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",

Expand Down

0 comments on commit 15c01cc

Please sign in to comment.