Stub class loader that never resolves anything (for unit tests).
()
| 1381 | |
| 1382 | /// Stub class loader that never resolves anything (for unit tests). |
| 1383 | fn no_class_loader() -> impl Fn(&str) -> Option<Arc<ClassInfo>> { |
| 1384 | |_| None |
| 1385 | } |
| 1386 | |
| 1387 | /// No function loader (for unit tests). |
| 1388 | fn no_function_loader() -> FunctionLoader<'static> { |
no outgoing calls