mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-25 07:27:52 +01:00
API Doc
This commit is contained in:
parent
bac4522cfc
commit
d2ab56d61a
@ -22,16 +22,49 @@ import java.util.Collection;
|
|||||||
* @author Volker Berlin
|
* @author Volker Berlin
|
||||||
*/
|
*/
|
||||||
public enum ScriptEngine {
|
public enum ScriptEngine {
|
||||||
|
/**
|
||||||
|
* Test the binary output with a fix version nodejs JavaScript runtime. GC is disabled.
|
||||||
|
*/
|
||||||
NodeJS,
|
NodeJS,
|
||||||
|
/**
|
||||||
|
* Test the binary output with the nightly SpiderMonkey JavaScript runtime. GC is disabled.
|
||||||
|
*/
|
||||||
SpiderMonkey,
|
SpiderMonkey,
|
||||||
|
/**
|
||||||
|
* Convert the text output with the nightly wabt.js (https://github.com/AssemblyScript/wabt.js/) and tun the test
|
||||||
|
* with nodejs. GC is disabled.
|
||||||
|
*/
|
||||||
NodeWat,
|
NodeWat,
|
||||||
|
/**
|
||||||
|
* Convert the text output with wasmTextToBinary function form nightly SpiderMonkey. GC is disabled.
|
||||||
|
*/
|
||||||
SpiderMonkeyWat,
|
SpiderMonkeyWat,
|
||||||
|
/**
|
||||||
|
* Convert the text output with wat2wasm https://github.com/WebAssembly/wabt and test it with nodejs. GC is
|
||||||
|
* disabled.
|
||||||
|
*/
|
||||||
Wat2Wasm,
|
Wat2Wasm,
|
||||||
NodeJsGC(true),
|
/**
|
||||||
SpiderMonkeyGC(true),
|
* Test the binary output with a fix version nodejs JavaScript runtime. GC is enabled.
|
||||||
NodeWatGC(true),
|
*/
|
||||||
SpiderMonkeyWatGC(true),
|
NodeJsGC( true ),
|
||||||
Wat2WasmGC(true),
|
/**
|
||||||
|
* Test the binary output with the nightly SpiderMonkey JavaScript runtime. GC is enabled.
|
||||||
|
*/
|
||||||
|
SpiderMonkeyGC( true ),
|
||||||
|
/**
|
||||||
|
* Convert the text output with the nightly wabt.js (https://github.com/AssemblyScript/wabt.js/) and tun the test
|
||||||
|
* with nodejs. GC is enabled.
|
||||||
|
*/
|
||||||
|
NodeWatGC( true ),
|
||||||
|
/**
|
||||||
|
* Convert the text output with wasmTextToBinary function form nightly SpiderMonkey. GC is enabled.
|
||||||
|
*/
|
||||||
|
SpiderMonkeyWatGC( true ),
|
||||||
|
/**
|
||||||
|
* Convert the text output with wat2wasm https://github.com/WebAssembly/wabt and test it with nodejs. GC is enabled.
|
||||||
|
*/
|
||||||
|
Wat2WasmGC( true ),
|
||||||
;
|
;
|
||||||
|
|
||||||
public final String useGC;
|
public final String useGC;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user