You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 26, 2022. It is now read-only.
The spec text talks about SIMD objects and SIMD values, where a SIMD object is an object with an internal [[SIMDData]] slot holding a SIMD value. The section about the SIMD constructor prototype talks about a [[SIMDWrapperData]] slot. I assume that is that same thing?
The spec text talks about SIMD objects and SIMD values, where a SIMD object is an object with an internal
[[SIMDData]]slot holding a SIMD value. The section about the SIMD constructor prototype talks about a[[SIMDWrapperData]]slot. I assume that is that same thing?Consider this code:
The last line will throw a TypeError because the
SIMD.Int32x4.prototype.toStringmethod requires a SIMD object. I wonder if that is intentional?Compare to the
Symbol.prototype.toStringmethod which accepts both a symbol value and an object wrapping a symbol.Something similar is going on with the
valueOfandtoLocaleStringmethods.