(String s)
| 23 | private static native void wasmImportDebug(int p0, int p1); |
| 24 | |
| 25 | public static void debug(String s) { |
| 26 | byte[] bytes = (s).getBytes(StandardCharsets.UTF_8); |
| 27 | wasmImportDebug(Address.ofData(bytes).toInt(), bytes.length); |
| 28 | |
| 29 | } |
| 30 | @Import(name = "info", module = "log") |
| 31 | private static native void wasmImportInfo(int p0, int p1); |
| 32 |
nothing calls this directly
no test coverage detected