[heycam/webidl] Should `includes` be allowed as operation names? (#767)

`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