Move WasmTextCode from tests into the core of the compiler for internal use.

This commit is contained in:
Volker Berlin 2018-11-18 13:00:49 +01:00
parent 03b8e68ccb
commit f71747a87f

View File

@ -35,4 +35,14 @@ public @interface WasmTextCode {
* @return the native WASM code
*/
String value();
/**
* Override the Java signature to support more as one return parameter. If you use this then you can't use it
* anymore in Java code directly. It is recommended to use this only with the modifier native.
* <p>
* Sample: "(I)II"
*
* @return optional Java method signature.
*/
String signature() default "";
}