(s: &str)
| 1272 | fn store_launch_cache(&mut self, config: &RunConfig, launch: CachedLaunch) { |
| 1273 | let fingerprint = |
| 1274 | full_stack::session::config_source_fingerprint(self.workspace.fs(), config); |
| 1275 | self.launch_cache = Some(LaunchCache { |
| 1276 | config: config.clone(), |
| 1277 | fingerprint, |
| 1278 | launch, |
| 1279 | }); |
| 1280 | } |
| 1281 | |
| 1282 | fn report_linked_build(&mut self, build: &full_stack::session::BuildOutcome) { |
| 1283 | // Retain the outcome for the inspector's Artifacts/Symbols panes. |
| 1284 | self.last_build = Some(build.clone()); |
no outgoing calls
no test coverage detected