File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 15.0.2
2+ - Add ` kTimerSignificantlyOverdue ` field to ` EventKind ` .
3+
14## 15.0.1
25- Update to version ` 4.19 ` of the spec.
36- Add ` Timer ` stream.
4- - Add ` TimerSignificantlyOverdue ` event kind.
57- Add ` details ` property to ` Event ` .
68- Add ` getQueuedMicrotasks ` RPC.
79- Add ` Microtask ` and ` QueuedMicrotasks ` types.
Original file line number Diff line number Diff line change @@ -2412,6 +2412,9 @@ abstract class EventKind {
24122412 /// Event from dart:developer.log.
24132413 static const String kLogging = 'Logging' ;
24142414
2415+ /// A timer fired significantly later than expected.
2416+ static const String kTimerSignificantlyOverdue = 'TimerSignificantlyOverdue' ;
2417+
24152418 /// A block of timeline events has been completed.
24162419 ///
24172420 /// This service event is not sent for individual timeline events. It is
Original file line number Diff line number Diff line change 11name : vm_service
2- version : 15.0.1
2+ version : 15.0.2
33description : >-
44 A library to communicate with a service implementing the Dart VM
55 service protocol.
Original file line number Diff line number Diff line change @@ -2781,6 +2781,9 @@ enum EventKind {
27812781 // Event from dart:developer.log.
27822782 Logging,
27832783
2784+ // A timer fired significantly later than expected.
2785+ TimerSignificantlyOverdue,
2786+
27842787 // A block of timeline events has been completed.
27852788 //
27862789 // This service event is not sent for individual timeline events. It is
You can’t perform that action at this time.
0 commit comments