(String s)
| 15 | private static native void wasmImportTrace(int p0, int p1); |
| 16 | |
| 17 | public static void trace(String s) { |
| 18 | byte[] bytes = (s).getBytes(StandardCharsets.UTF_8); |
| 19 | wasmImportTrace(Address.ofData(bytes).toInt(), bytes.length); |
| 20 | |
| 21 | } |
| 22 | @Import(name = "debug", module = "log") |
| 23 | private static native void wasmImportDebug(int p0, int p1); |
| 24 |
no test coverage detected