(e: &AnyError)
| 17 | use crate::extra; |
| 18 | |
| 19 | fn get_error_class_name(e: &AnyError) -> &'static str { |
| 20 | deno_runtime::errors::get_error_class_name(e).unwrap_or("Error") |
| 21 | } |
| 22 | |
| 23 | pub async fn start() -> Result<(), AnyError> { |
| 24 | let module_loader = Rc::new(FsModuleLoader); |
nothing calls this directly
no outgoing calls
no test coverage detected