Browse Source

Add `json-parse-with-source` feature to `boa_tester` (#2778)

This PR resolves the failing CI in #2777

It changes the following:

- Adds `json-parse-with-source` feature to `boa_tester`
- Bumps `test262` module to `be0abd9`
pull/2780/head
Haled Odat 2 years ago
parent
commit
0fb0558d44
  1. 4
      boa_tester/src/edition.rs
  2. 2
      test262

4
boa_tester/src/edition.rs

@ -47,6 +47,10 @@ static FEATURE_EDITION: phf::Map<&'static str, SpecEdition> = phf::phf_map! {
// https://github.com/tc39/proposal-json-modules
"json-modules" => SpecEdition::ESNext,
// JSON.parse with source
// https://github.com/tc39/proposal-json-parse-with-source
"json-parse-with-source" => SpecEdition::ESNext,
// Resizable Arraybuffer
// https://github.com/tc39/proposal-resizablearraybuffer
"resizable-arraybuffer" => SpecEdition::ESNext,

2
test262

@ -1 +1 @@
Subproject commit 4a6439e4a7aba77e305afc30977b02a34ad11b33
Subproject commit be0abd93cd799a758714b5707fa87c9048fc38ce
Loading…
Cancel
Save