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
We have some kind of mutability issue in the spellcheck styler.
For example, a client app had a crash within spelling_and_grammar.dart within _applyErrors() where we try to do the following:
spelling_and_grammar.dart
_applyErrors()
viewModel.grammarErrors ..clear() ..addAll([ //.... ]);
Either we want this list to be immutable, in which case we should replace it instead of alter it.
Or, we want this list to be mutable, in which case we need to lookup where we're assigning an unmodifiable list to this variable.
The text was updated successfully, but these errors were encountered:
angelosilvestre
No branches or pull requests
We have some kind of mutability issue in the spellcheck styler.
For example, a client app had a crash within
spelling_and_grammar.dart
within_applyErrors()
where we try to do the following:Either we want this list to be immutable, in which case we should replace it instead of alter it.
Or, we want this list to be mutable, in which case we need to lookup where we're assigning an unmodifiable list to this variable.
The text was updated successfully, but these errors were encountered: