Enable multiple return values

This commit is contained in:
Volker Berlin 2018-11-25 17:05:37 +01:00
parent 95b72762f7
commit ad7174ba8c

View File

@ -338,7 +338,7 @@ public class WasmRule extends TemporaryFolder {
private static ProcessBuilder nodeJsCommand( File script ) {
String command = nodeExecuable();
// details see with command: node --v8-options
return new ProcessBuilder( command, "--experimental-wasm-se", "--experimental-wasm-sat-f2i-conversions", "--experimental-wasm-eh", "--experimental-wasm-anyref", script.getAbsolutePath() );
return new ProcessBuilder( command, "--experimental-wasm-mv", "--experimental-wasm-se", "--experimental-wasm-sat-f2i-conversions", "--experimental-wasm-eh", "--experimental-wasm-anyref", script.getAbsolutePath() );
}
/**