()
| 38 | } |
| 39 | |
| 40 | public readBoolean(): boolean { |
| 41 | const value = this.dataView.getInt8(this._position); |
| 42 | this._position += 1; |
| 43 | this.positonChanged(); |
| 44 | return Boolean(value); |
| 45 | } |
| 46 | |
| 47 | public readChar(): string { |
| 48 | if (this._position >= this.length) throw new Error(ErrorMessage.PAGDecodeError); |
no test coverage detected