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
The spec has two methods which take FrozenArray<SharedStorageUrlWithMetadata>.
It's not clear what was intended here. But per the Web IDL spec, almost the exact same set of values are accepted compared to accepting the more conventional sequence<SharedStorageUrlWithMetadata>.
(The difference is that certain proxies for arrays, which define throwing getOwnPropertyDescriptor() traps, would be rejected, because in theory the implementation is supposed to freeze the incoming array.)
We'd like to prohibit the usage of FrozenArray<T> as a parameter type in Web IDL, per whatwg/webidl#1399. It would be lovely if you could move to using sequence<>s.
The text was updated successfully, but these errors were encountered:
The spec has two methods which take
FrozenArray<SharedStorageUrlWithMetadata>
.It's not clear what was intended here. But per the Web IDL spec, almost the exact same set of values are accepted compared to accepting the more conventional
sequence<SharedStorageUrlWithMetadata>
.(The difference is that certain proxies for arrays, which define throwing
getOwnPropertyDescriptor()
traps, would be rejected, because in theory the implementation is supposed to freeze the incoming array.)We'd like to prohibit the usage of
FrozenArray<T>
as a parameter type in Web IDL, per whatwg/webidl#1399. It would be lovely if you could move to usingsequence<>
s.The text was updated successfully, but these errors were encountered: