-
Notifications
You must be signed in to change notification settings - Fork 29.8k
[flutter_tools] fix type error in symbolize #55212
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
| } | ||
| ); | ||
| } | ||
| final DwarfSymbolizationService symbolizationService = DwarfSymbolizationService( |
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.
Maybe a DwarfSymbolizationService.test() with this transformer?
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.
Done
|
The tests don't seem to be running |
|
fyi @fkorotkov |
zanderso
left a comment
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
| }) : _transformer = symbolsTransformer; | ||
|
|
||
| /// Create a DwarfSymbolizationService with a no-op transformer for testing. | ||
| factory DwarfSymbolizationService.test() { |
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.
Can this be @visibleForTesting?
|
@jonahwilliams it's the same issue as yesterday (here is a list of all the suites). I'm about to deploy a tweak to try to workaround it. I've also reached out to GitHub folks about it. |
* [flutter_tools] fix type error in symbolize (#55212) * [flutter_tools] check first for stable tag, then dev tag (#55342) * [flutter_tools] enable `flutter upgrade` to support force pushed branches (#55594) * [flutter_tools] catch ProcessException and throw ToolExit during upgrade (#55759) * Update engine version to 376ad6a64b08aa26005e3f82aed26de2e290b572 Co-authored-by: Jonah Williams <campfish91@gmail.com> Co-authored-by: Christopher Fujino <fujino@google.com> Co-authored-by: Christopher Fujino <christopherfujino@gmail.com>
Description
Symbolize had a type error, probably introduced some time after I stopped manually testing and started doing some refactoring on the code. Something, Something contravariance instead of covariance
Fixes #55214