(test)
| 93 | } |
| 94 | |
| 95 | function AllBigIntMatchedCtorCombinations(test) { |
| 96 | for (let targetCtor of ctors) { |
| 97 | for (let sourceCtor of ctors) { |
| 98 | if (IsBigIntTypedArray(new targetCtor()) != |
| 99 | IsBigIntTypedArray(new sourceCtor())) { |
| 100 | // Can't mix BigInt and non-BigInt types. |
| 101 | continue; |
| 102 | } |
| 103 | test(targetCtor, sourceCtor); |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | function AllBigIntUnmatchedCtorCombinations(test) { |
| 109 | for (let targetCtor of ctors) { |
no test coverage detected