-
Notifications
You must be signed in to change notification settings - Fork 125
Prepare for 0.20.2 and fix void problems #1727
New issue
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Added some minor tweaks post-merge to minimize the number of packages we still depend on that don't have updated upper bounds. |
@MichaelRFairhurst PTAL post merge? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
last commit lgtm
lib/dartdoc.dart
Outdated
void logAnalysisErrors(Set<Source> sources) async { | ||
List<AnalysisErrorInfo> errorInfos = []; | ||
Future<void> logAnalysisErrors(Set<Source> sources) async { | ||
List<AnalysisErrorInfo> errorInfos = <AnalysisErrorInfo>[]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The right hand side should be inferred; I generally specify the LHS and let the RHS float, but YMMV.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still LGTM
Fixes #1724 and another part of #1728, and updates the analyzer package to the latest version.