(length: number)
| 36 | } |
| 37 | |
| 38 | public string(length: number): string { |
| 39 | const result = this.buffer.toString(this.encoding, this.offset, this.offset + length) |
| 40 | this.offset += length |
| 41 | return result |
| 42 | } |
| 43 | |
| 44 | public cstring(): string { |
| 45 | const start = this.offset |
no outgoing calls
no test coverage detected