[w3c/IndexedDB] Update to Web IDL changes to optional dictionary defaulting (#285)

See: https://github.com/heycam/webidl/issues/758

Web IDL recently changed to require explicitly listing a default value for defaulted dictionaries instead of it just magically happening.

In practice what that means is that APIs like this:
```webidl
Constructor (BaseAudioContext context, optional AnalyserOptions options)
```
need to be written like this instead:
```webidl
Constructor (BaseAudioContext context, optional AnalyserOptions options = {})
```
(with the addition of `= {}` on the dictionary argument). 

For Indexed DB:

* IDBDatabase (`createObjectStore()`)
* IDBObjectStore (`createIndex()`)
* IDBVersionChangeEvent (constructor)

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/285

Received on Wednesday, 10 July 2019 18:21:33 UTC