()
| 3038 | |
| 3039 | const wholeArrayView = new ctor(gsab); |
| 3040 | function WriteData() { |
| 3041 | // Write some data into the array. |
| 3042 | for (let i = 0; i < wholeArrayView.length; ++i) { |
| 3043 | WriteToTypedArray(wholeArrayView, i, 2 * i); |
| 3044 | } |
| 3045 | } |
| 3046 | WriteData(); |
| 3047 | |
| 3048 | // Orig. array: [0, 2, 4, 6] |
no test coverage detected
searching dependent graphs…