Skip to content

Commit d59cca1

Browse files
committed
Address comments
1 parent 55a8ed3 commit d59cca1

3 files changed

Lines changed: 17 additions & 5 deletions

File tree

packages/devtools_app/lib/src/screens/vm_developer/queued_microtasks/queued_microtasks_view.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ class RefreshQueuedMicrotasksInstructions extends StatelessWidget {
6464
}
6565
}
6666

67+
/// Record containing details about a particular microtask that was in a
68+
/// microtask queue snapshot, and an index representing how close to the front
69+
/// of the queue that microtask was when the snapshot was taken.
70+
///
6771
/// In the response returned by the VM Service, microtasks are sorted in
6872
/// ascending order of when they will be dequeued, i.e. the microtask that will
6973
/// run earliest is at index 0 of the returned list. We use those indices of the

packages/devtools_app/release_notes/NEXT_RELEASE_NOTES.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ TODO: Remove this section if there are not any general updates.
2323

2424
## Performance updates
2525

26-
- Added a Queued Microtasks tab to the VM Tools screen, which allows a user to
27-
see details about the microtasks scheduled in an isolate's microtask queue.
28-
This tab currently only appears when DevTools is connected to a Flutter or
29-
Dart app started with `--profile-microtasks`. -
30-
[#9239](https://github.com/flutter/devtools/pull/9239).
26+
TODO: Remove this section if there are not any general updates.
3127

3228
## CPU profiler updates
3329

@@ -65,6 +61,14 @@ TODO: Remove this section if there are not any general updates.
6561

6662
TODO: Remove this section if there are not any general updates.
6763

64+
## Advanced developer mode updates
65+
66+
- Added a Queued Microtasks tab to the VM Tools screen, which allows a user to
67+
see details about the microtasks scheduled in an isolate's microtask queue.
68+
This tab currently only appears when DevTools is connected to a Flutter or
69+
Dart app started with `--profile-microtasks`. -
70+
[#9239](https://github.com/flutter/devtools/pull/9239).
71+
6872
## Full commit history
6973

7074
To find a complete list of changes in this release, check out the

packages/devtools_app/release_notes/helpers/release_notes_template.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ TODO: Remove this section if there are not any general updates.
6161

6262
TODO: Remove this section if there are not any general updates.
6363

64+
## Advanced developer mode updates
65+
66+
TODO: Remove this section if there are not any general updates.
67+
6468
## Full commit history
6569

6670
To find a complete list of changes in this release, check out the

0 commit comments

Comments
 (0)