[Wasm] Remove unnecessary --experimental-wasm-eh option while running d8 and nodejs

The support for Exception Handling proposal is turned on by default everywhere.
This commit is contained in:
Zalim Bashorov
2022-11-01 19:18:37 +01:00
parent 7b7c517dbb
commit ff2d3d0bdb
2 changed files with 1 additions and 3 deletions
@@ -188,7 +188,6 @@ abstract class BasicWasmBoxTest(
ExternalTool(System.getProperty("javascript.engine.path.V8"))
.run(
"--experimental-wasm-gc",
"--experimental-wasm-eh",
*jsFilesBefore.map { File(it).absolutePath }.toTypedArray(),
"--module",
"./test.mjs",
@@ -75,5 +75,4 @@ internal fun writeWasmUnitTestRunner(compiledFile: File): File {
internal fun MutableList<String>.addWasmExperimentalArguments() {
add("--experimental-wasm-gc")
add("--experimental-wasm-eh")
}
}