You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement API int gcCount in dart:developer, and make it available in profile and debug modes.
Suggested documentation:
The value increases when full cycle of garbage collection happened.
It is not guaranteed for each full cycle of garbage collection to result in the counter increase.
However, it is guaranteed that, if an object did not have retaining path to the app root when the value
switched to n, it will be garbage collected by the time when the value switched to n + 1.
The text was updated successfully, but these errors were encountered:
polina-c
added
the
area-vm
Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.
label
Sep 28, 2022
This is a follow up for GCClock discussion at go/flutter-devtools-sync.
Implement API
int gcCount
indart:developer
, and make it available in profile and debug modes.Suggested documentation:
The text was updated successfully, but these errors were encountered: