21:03 | <bakkot> | question for shu / other implementers: right now the TypedArray tests are almost all generic across all of the TypedArray types, including stuff like Atomics which are tested against every TA type. if I just add Float16Array to that list it's going to cause every one of those tests to fail. that seems undesirable for implementers. do you have thoughts? |
21:04 | <bakkot> | the list is just defined in code, so in principle I could conditionally add Float16Array based on whether it exists as a global, I guess, and then have other tests explicitly for Float16Array which would use a feature flag |