(String s)
| 47 | private static native void wasmImportError(int p0, int p1); |
| 48 | |
| 49 | public static void error(String s) { |
| 50 | byte[] bytes = (s).getBytes(StandardCharsets.UTF_8); |
| 51 | wasmImportError(Address.ofData(bytes).toInt(), bytes.length); |
| 52 | |
| 53 | } |
| 54 | |
| 55 | } |
| 56 |
nothing calls this directly
no test coverage detected