(String s)
| 31 | private static native void wasmImportInfo(int p0, int p1); |
| 32 | |
| 33 | public static void info(String s) { |
| 34 | byte[] bytes = (s).getBytes(StandardCharsets.UTF_8); |
| 35 | wasmImportInfo(Address.ofData(bytes).toInt(), bytes.length); |
| 36 | |
| 37 | } |
| 38 | @Import(name = "warn", module = "log") |
| 39 | private static native void wasmImportWarn(int p0, int p1); |
| 40 |
nothing calls this directly
no test coverage detected