(len: number)
| 260 | } |
| 261 | |
| 262 | private stringLatin1Fast(len: number) { |
| 263 | const result = this.bigString.substring(this.cursor, this.cursor + len); |
| 264 | this.cursor += len; |
| 265 | return result; |
| 266 | } |
| 267 | |
| 268 | private stringLatin1Slow(len: number) { |
| 269 | const rawCursor = this.cursor; |