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
Object.seal will do [DefinePropertyOrThrow](https://tc39.es/ecma262/#sec-definepropertyorthrow)(O, k, PropertyDescriptor { [[Configurable]]: false }). And it should throw an error for TypedArrays since ii. If Desc has a [[Configurable]] field and Desc.[[Configurable]] is false, return false. But the test is checking it does not throw an error.
The text was updated successfully, but these errors were encountered:
Object.seal
will do[DefinePropertyOrThrow](https://tc39.es/ecma262/#sec-definepropertyorthrow)(O, k, PropertyDescriptor { [[Configurable]]: false })
. And it should throw an error for TypedArrays sinceii. If Desc has a [[Configurable]] field and Desc.[[Configurable]] is false, return false.
But the test is checking it does not throw an error.The text was updated successfully, but these errors were encountered: