- From: Joshua Bell <notifications@github.com>
- Date: Wed, 10 Jul 2019 11:21:09 -0700
- To: w3c/IndexedDB <IndexedDB@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 10 July 2019 18:21:33 UTC
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