| 3 | import java.math.BigInteger; |
| 4 | |
| 5 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…