()
| 57 | function testArrayType(intArrayType, floatArrayType, pattern) { |
| 58 | // Test passing NaNs to constructor with array. |
| 59 | let create = function() { |
| 60 | return new intArrayType(new floatArrayType([-NaN]).buffer); |
| 61 | }; |
| 62 | testSameOptimized(intArrayType, pattern, create); |
| 63 | // Test passing NaNs to constructor with iterator. |
| 64 | create = function() { |
no outgoing calls
no test coverage detected