-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Instrument State, Layer, RenderObject and Element. #111328
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
packages/flutter/test_release/foundation/memory_allocations_test.dart
Outdated
Show resolved
Hide resolved
packages/flutter/test_release/foundation/memory_allocations_test.dart
Outdated
Show resolved
Hide resolved
goderbauer
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.
LGTM
| MemoryAllocations.instance.dispatchObjectCreated( | ||
| library: _flutterFoundationLibrary, | ||
| className: 'ValueNotifier', | ||
| className: '$ValueNotifier', |
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.
Do these end up being equivalent to runtimeType.toString under the hood?
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.
Looks like, no, it's emitted as a TypeLiteralConstant which should be fine...
See flutter/devtools#3951