Protocols and operators mostly
All checks were successful
Rust / build (push) Successful in 4m8s

This commit is contained in:
2026-01-21 22:22:58 +01:00
parent 75b05a2965
commit f38193edcc
33 changed files with 578 additions and 147 deletions

View File

@@ -211,12 +211,13 @@ impl Extension {
.await
{
Ok(module) => module,
Err(ChildError { kind, .. }) =>
Err(ChildError { kind, .. }) => {
break 'reply Err(match kind {
ChildErrorKind::Private => panic!("Access checking was disabled"),
ChildErrorKind::Constant => api::LsModuleError::IsConstant,
ChildErrorKind::Missing => api::LsModuleError::InvalidPath,
}),
});
},
};
let mut members = std::collections::HashMap::new();
for (k, v) in &module.members {