()
| 5 | use std::sync::OnceLock; |
| 6 | |
| 7 | fn compiled_module() -> &'static ModuleDef { |
| 8 | static COMPILED_MODULE: OnceLock<ModuleDef> = OnceLock::new(); |
| 9 | COMPILED_MODULE |
| 10 | .get_or_init(|| CompiledModule::compile("module-test", CompilationMode::Debug).extract_schema_blocking()) |
| 11 | } |
| 12 | |
| 13 | macro_rules! declare_tests { |
| 14 | ($($name:ident => $lang:expr,)*) => ($( |
nothing calls this directly
no test coverage detected
searching dependent graphs…