Skip to content

util: pretty-print SIMD types

Before:

Bool32x4 {}
Float32x4 {}
Int32x4 {}
// etc.

After:

Bool32x4 [ false, false, false, false ]
Float32x4 [ NaN, NaN, NaN, NaN ]
Int32x4 [ 0, 0, 0, 0 ]
// etc.

CI: https://ci.nodejs.org/job/node-test-pull-request/2724/

Merge request reports

Loading