(platform: Platform)
| 84 | |
| 85 | impl SimulatorWindow { |
| 86 | fn new(platform: Platform) -> Self { |
| 87 | Self { |
| 88 | platform, |
| 89 | process: None, |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | fn set_process(&mut self, process: std::process::Child) { |
| 94 | self.process = Some(process); |
nothing calls this directly
no outgoing calls
no test coverage detected