()
| 35 | } |
| 36 | |
| 37 | readInt32(): number { |
| 38 | const val = this.view.getInt32(this.offset, true); |
| 39 | this.offset += 4; |
| 40 | return val; |
| 41 | } |
| 42 | |
| 43 | readUint64(): bigint { |
| 44 | const val = this.view.getBigUint64(this.offset, true); |
no outgoing calls
no test coverage detected