| 56 | * Ring buffer writer (used by main thread) |
| 57 | */ |
| 58 | class RingBufferWriter { |
| 59 | constructor(sharedBuffer) { |
| 60 | this.buffer = sharedBuffer; |
| 61 | this.int32 = new Int32Array(sharedBuffer); |
nothing calls this directly
no outgoing calls
no test coverage detected