(view: Box<dyn CompilerView>, counter: &mut u64)
| 205 | .storage |
| 206 | .and_then(|storage| eframe::get_value(storage, settings::APP_KEY)) |
| 207 | .unwrap_or_default(); |
| 208 | settings.apply(&cc.egui_ctx); |
| 209 | Self::with_workspace(open_startup_workspace(&settings), settings) |
| 210 | } |
| 211 | |
| 212 | fn with_workspace(workspace: IdeWorkspace, settings: settings::AppSettings) -> Self { |
| 213 | let mut app = Self { |
| 214 | workspace, |
nothing calls this directly
no test coverage detected