(len: number)
| 266 | } |
| 267 | |
| 268 | private stringLatin1Slow(len: number) { |
| 269 | const rawCursor = this.cursor; |
| 270 | this.cursor += len; |
| 271 | return readLatin1String(this.platformBuffer, len, rawCursor); |
| 272 | } |
| 273 | |
| 274 | buffer(len: number) { |
| 275 | if (len < 0 || len > this.byteLength - this.cursor) { |
no test coverage detected