MCPcopy Create free account
hub / github.com/bluejekyll/wasmtime-java / V128

Class V128

src/main/java/net/bluejekyll/wasmtime/ty/V128.java:5–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import java.math.BigInteger;
4
5public class V128 implements WasmType {
6 // TODO: maybe this should be an array of bytes...
7 public final BigInteger field;
8
9 public V128(BigInteger field) {
10 this.field = field;
11 }
12
13 @Override
14 public BigInteger getField() {
15 return this.field;
16 }
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…