()
| 178 | build_glow_start: Option<f64>, |
| 179 | build_lit_until: Option<Layer>, |
| 180 | // Target of `build_lit_until`, so the lit spine only reads stale for a different program. |
| 181 | built_target: Option<BuildTarget>, |
| 182 | active_build_target: Option<BuildTarget>, |
| 183 | pub(super) selected_config: usize, |
| 184 | manifest_cache: Option<(f64, Vec<VPath>)>, |
| 185 | idle_seen: Option<(u64, f64)>, |
| 186 | idle_checked: u64, |
| 187 | // Present from Run until the next config change. |
| 188 | pub(super) live: Option<LiveMachine>, |
| 189 | launch_cache: Option<LaunchCache>, |
| 190 | pub(super) breakpoint_entry: String, |
nothing calls this directly
no test coverage detected