Skip to content

Commit

Permalink
Fix flag for js string builtins (#411)
Browse files Browse the repository at this point in the history
Run 
```bash
deno --v8-flags=--help
node --help --v8-options
```

And there's no `experimental-wasm-js-string-builtins`. Instead, it's `
--experimental-wasm-imported-strings`
  • Loading branch information
peter-jerry-ye authored Dec 11, 2024
1 parent 4b72448 commit 66d80eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions features.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
"gc": "22.0",
"instrumentAndTracingTechnology": ["flag", "Requires flag `--experimental-wasm-instruction-tracing`"],
"jspi": ["flag", "Requires flag `--experimental-wasm-jspi`"],
"jsStringBuiltins": ["flag", "Requires flag `--experimental-wasm-js-string-builtins`"],
"jsStringBuiltins": ["flag", "Requires flag `--experimental-wasm-imported-strings`"],
"memory64": ["flag", "Requires flag `--experimental-wasm-memory64`"],
"multiMemory": "22.0",
"multiValue": "15.0",
Expand Down Expand Up @@ -282,7 +282,7 @@
"gc": "1.38",
"instrumentAndTracingTechnology": ["flag", "Requires flag `--v8-flags=--experimental-wasm-instruction-tracing`"],
"jspi": ["flag", "Requires flag `--v8-flags=--experimental-wasm-jspi`"],
"jsStringBuiltins": ["flag", "Requires flag `--v8-flags=--experimental-wasm-js-string-builtins`"],
"jsStringBuiltins": ["flag", "Requires flag `--v8-flags=--experimental-wasm-imported-strings`"],
"memory64": ["flag", "Requires flag `--v8-flags=--experimental-wasm-memory64`"],
"multiMemory": "1.38",
"multiValue": "1.3.2",
Expand Down

0 comments on commit 66d80eb

Please sign in to comment.