-
Notifications
You must be signed in to change notification settings - Fork 336
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
Migrate logging_controller.dart to null safety. #3804
Conversation
packages/devtools_app/lib/src/screens/logging/logging_controller.dart
Outdated
Show resolved
Hide resolved
packages/devtools_app/lib/src/screens/logging/logging_controller.dart
Outdated
Show resolved
Hide resolved
|
||
// TODO(jacobr): node.diagnostic.isDiagnosticableValue isn't quite | ||
// right. | ||
if (node.diagnostic.isDiagnosticableValue) { | ||
if (node.diagnostic.isDiagnosticableValue!) { |
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.
I don't think isDiagnosticableValue should be nullable since we specify a default value in the getter
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.
It is not nullable, but it is not migrated yet.
packages/devtools_app/lib/src/screens/logging/logging_controller.dart
Outdated
Show resolved
Hide resolved
packages/devtools_app/lib/src/screens/logging/logging_controller.dart
Outdated
Show resolved
Hide resolved
packages/devtools_app/lib/src/screens/logging/logging_controller.dart
Outdated
Show resolved
Hide resolved
packages/devtools_app/lib/src/screens/logging/logging_controller.dart
Outdated
Show resolved
Hide resolved
packages/devtools_app/lib/src/screens/logging/logging_controller.dart
Outdated
Show resolved
Hide resolved
tested |
No description provided.