We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
Constructor (BaseAudioContext context, optional AnalyserOptions options)
need to be written like this instead:
Constructor (BaseAudioContext context, optional AnalyserOptions options = {})
(with the addition of = {} on the dictionary argument). This affects a bunch of the web audio APIs.
The text was updated successfully, but these errors were encountered:
Taking this, this is just a bunch of manual fixes but probably rather straightforward.
Sorry, something went wrong.
Fixed by #1993, thanks for the heads up.
padenot
No branches or pull requests
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:
need to be written like this instead:
(with the addition of = {} on the dictionary argument). This affects a bunch of the web audio APIs.
The text was updated successfully, but these errors were encountered: