(self)
| 51 | use std::collections::HashMap; |
| 52 | #[cfg(not(target_arch = "wasm32"))] |
| 53 | use std::path::Path; |
| 54 | use terminal::{ConsoleStream, TerminalKind, TerminalState}; |
| 55 | |
| 56 | const BUILD_GLOW_SECS: f64 = 0.85; |
| 57 | #[cfg(not(target_arch = "wasm32"))] |
| 58 | const LESSONS_WORKSPACE_DIR: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/programs/lessons"); |
| 59 | |
| 60 | #[derive(Clone, Copy, Debug, PartialEq, Eq)] |
| 61 | pub(super) enum Tool { |
| 62 | Files, |
| 63 | Search, |
no outgoing calls
no test coverage detected