Re: [IndexedDB] Make IDBFactory.cmp [ImplicitThis] (#24)

Hrm, no, `[ImplicitThis]` applies to the interface, not particular operations.

It probably should have been defined as:
```webidl
interface IDBFactory {
  // ...
  static short cmp(any first, any second);
};
```
...and then invoked as: `IDBFactory.cmp(a, b);` but we can't change that now. Alas. Well, callers can do: `let cmp = indexedDB.cmp.bind(indexedDB)` I suppose.


---
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/24#issuecomment-115048408

Received on Wednesday, 24 June 2015 23:57:47 UTC