- From: François Beaufort <notifications@github.com>
- Date: Tue, 20 Apr 2021 23:05:14 -0700
- To: heycam/webidl <webidl@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 21 April 2021 06:05:27 UTC
Thank you @bathos for the detailed explanation.
Do you have folks some idea on how to move forward?
Without `record<unsigned short, ...` support, I'm currently going with a sequence of dictionary with a key instead. There may be a better way...
```idl
dictionary Foo {
...
sequence<Bar> someName;
};
dictionary Bar {
required unsigned short someKey;
BufferSource someSource;
BufferSource anotherSource;
};
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/978#issuecomment-823801527
Received on Wednesday, 21 April 2021 06:05:27 UTC