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
For example, the SpeechRecognitionResult's getter operation says:
If index is greater than or equal to length, this returns null
But the IDL does not indicate so:
[Exposed=Window] interface SpeechRecognitionResult { readonly attribute unsigned long length; getter SpeechRecognitionAlternative item(unsigned long index); readonly attribute boolean isFinal; };
The return types must be nullable here. I'm not sure how Blink allows returning null here, though?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
For example, the SpeechRecognitionResult's getter operation says:
But the IDL does not indicate so:
The return types must be nullable here. I'm not sure how Blink allows returning null here, though?
The text was updated successfully, but these errors were encountered: