- From: Kagami Sascha Rosylight <notifications@github.com>
- Date: Sat, 10 Aug 2019 00:40:18 -0700
- To: heycam/webidl <webidl@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Saturday, 10 August 2019 07:40:40 UTC
`includes` has been a reserved keyword since we introduced mixins, but IndexedDB is using that word for an operation: https://github.com/w3c/IndexedDB/commit/98b28b9890eb92b36eaadbedb31cea2d3bcd64aa
```webidl
[Exposed=(Window,Worker)]
interface IDBKeyRange {
// -- snip --
boolean _includes(any key);
};
```
@bzbarsky raised a concern that we shouldn't force escaping here. What do you think?
--
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/767
Received on Saturday, 10 August 2019 07:40:40 UTC