mirror of
https://github.com/tc39/test262.git
synced 2025-05-28 10:40:33 +02:00
1. test/built-ins/TypedArray/prototype/findIndex/BigInt/predicate-may-detach-buffer.js It is not updated when a60a67ea880bb4b5de849ee8f7676a475f60c85f is landed. This patch fixes it. 2. test/built-ins/TypedArray/prototype/filter/BigInt/callbackfn-detachbuffer.js After detaching, BigInt64Array/BigUint64Array will produce undefined for indexed access. And if `filter`'s callback says `true` for these results, we need to store `ToBigInt(undefined)` to a newly resulted BigInt64Array/BigUint64Array and this will throw an error. But this test assumed it does not throw. This patch fixed flag so that we do not throw that error while keeping detached typed arrays tested.