(ta, n, start, end)
| 224 | } |
| 225 | |
| 226 | function TypedArrayFillHelper(ta, n, start, end) { |
| 227 | if (ta instanceof BigInt64Array || ta instanceof BigUint64Array) { |
| 228 | ta.fill(BigInt(n), start, end); |
| 229 | } else { |
| 230 | ta.fill(n, start, end); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | function ArrayFillHelper(ta, n, start, end) { |
| 235 | if (ta instanceof BigInt64Array || ta instanceof BigUint64Array) { |
no test coverage detected
searching dependent graphs…