-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Fuzzy arrow / dynamic as bottom is a hint, but should be a warning #31874
Comments
This will eventually become an error. Not sure it's worth making it a warning as an intermediate step. |
It might be worth making this a warning, if we can do so without breaking the internal builds (we're currently working on eliminating the hint internally). Making it a warning earlier might help us avoid accidental regressions. I'll look into it. In the meantime if you want to protect against this, you can put the following in your analysis options file:
|
@srawlins if we promoted this from hint to warning, could we keep it from breaking builds internally? |
It won't break anything internally. |
I have a CL for this, but have to land a CL making our tests clean first. Mostly done, hoping to land today. |
We stumbled over the
grpc-dart
repo not passinguses_dynamic_as_bottom
by coincidence despite that repo running analysis on travis. The issue is that we currently report this as just a hint, which doesn't fail the build:Shouldn't this at least be a warning?
The text was updated successfully, but these errors were encountered: