| 170 | pub(super) memory_view: debug_view::MemoryViewState, |
| 171 | // Sticky across stretches of pc with no line info, so a line stays highlighted. |
| 172 | pub(super) code_follow: Option<(String, u32)>, |
| 173 | // Last auto-scroll target, so follow-pc does not fight a manual scroll every frame. |
| 174 | pub(super) code_follow_scrolled: Option<(String, u32)>, |
| 175 | launch_mode: LaunchMode, |
| 176 | pub(super) step_count: u64, |
| 177 | step_unit: machine_dock::StepUnit, |
| 178 | pub(super) time_scrub: usize, |
| 179 | // Pinned to the newest frame until the user drags back; re-armed by "now" or the end. |
| 180 | pub(super) time_follow_now: bool, |
nothing calls this directly
no outgoing calls
no test coverage detected