| 1 | package net.bluejekyll.wasmtime.ty; |
| 2 | |
| 3 | public class F32 implements WasmType { |
| 4 | public final float field; |
| 5 | |
| 6 | public F32(float field) { |
| 7 | this.field = field; |
| 8 | } |
| 9 | |
| 10 | @Override |
| 11 | public Float getField() { |
| 12 | return this.field; |
| 13 | } |
| 14 | |
| 15 | public float floatValue() { |
| 16 | return this.field; |
| 17 | } |
| 18 | } |
no outgoing calls
no test coverage detected