| 27 | // instances of BufferView will their have m_mode set to WastefulTypedArray |
| 28 | // since we use the .buffer getter to create a DataView |
| 29 | export class BufferView extends Uint8Array { |
| 30 | constructor(...args) { |
| 31 | super(...args); |
| 32 | this._dview = new DataView(this.buffer, this.byteOffset); |
nothing calls this directly
no outgoing calls
no test coverage detected