(&mut self, platform: Platform)
| 567 | } |
| 568 | |
| 569 | fn cleanup_platform(&mut self, platform: Platform) { |
| 570 | self.simulator_windows.retain_mut(|window| { |
| 571 | if window.platform == platform { |
| 572 | window.kill_process(); |
| 573 | false |
| 574 | } else { |
| 575 | true |
| 576 | } |
| 577 | }); |
| 578 | } |
| 579 | |
| 580 | pub fn get_status(&self) -> BuildStatus { |
| 581 | self.status.lock().unwrap().clone() |
no test coverage detected