[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:
@@ -188,7 +188,6 @@ abstract class BasicWasmBoxTest(
|
|||||||
ExternalTool(System.getProperty("javascript.engine.path.V8"))
|
ExternalTool(System.getProperty("javascript.engine.path.V8"))
|
||||||
.run(
|
.run(
|
||||||
"--experimental-wasm-gc",
|
"--experimental-wasm-gc",
|
||||||
"--experimental-wasm-eh",
|
|
||||||
*jsFilesBefore.map { File(it).absolutePath }.toTypedArray(),
|
*jsFilesBefore.map { File(it).absolutePath }.toTypedArray(),
|
||||||
"--module",
|
"--module",
|
||||||
"./test.mjs",
|
"./test.mjs",
|
||||||
|
|||||||
-1
@@ -75,5 +75,4 @@ internal fun writeWasmUnitTestRunner(compiledFile: File): File {
|
|||||||
|
|
||||||
internal fun MutableList<String>.addWasmExperimentalArguments() {
|
internal fun MutableList<String>.addWasmExperimentalArguments() {
|
||||||
add("--experimental-wasm-gc")
|
add("--experimental-wasm-gc")
|
||||||
add("--experimental-wasm-eh")
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user