| 68 | } |
| 69 | |
| 70 | pub struct DevServer { |
| 71 | watcher: Option<RecommendedWatcher>, |
| 72 | watcher_tx: Option<Sender<notify::Event>>, |
| 73 | target_platform: Platform, |
| 74 | status: Arc<Mutex<BuildStatus>>, |
| 75 | simulator_windows: Vec<SimulatorWindow>, |
| 76 | file_watcher_thread: Option<std::thread::JoinHandle<()>>, |
| 77 | ignore_paths: Vec<String>, |
| 78 | } |
| 79 | |
| 80 | pub struct SimulatorWindow { |
| 81 | platform: Platform, |
nothing calls this directly
no outgoing calls
no test coverage detected