(rstr, rstr_view)
| 337 | |
| 338 | class Reader { |
| 339 | constructor(rstr, rstr_view) { |
| 340 | this.rstr = rstr; |
| 341 | this.rstr_view = rstr_view; |
| 342 | this.m_data = rstr_view.read64(off.strimpl_m_data); |
| 343 | } |
| 344 | |
| 345 | read8_at(offset) { |
| 346 | return this.rstr.charCodeAt(offset); |