- From: Joshua Bell <notifications@github.com>
- Date: Wed, 24 Jun 2015 16:56:53 -0700
- To: w3c/IndexedDB <IndexedDB@noreply.github.com>
Received on Wednesday, 24 June 2015 23:57:47 UTC
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