feat(els): add deep completion

This commit is contained in:
Shunsuke Shibayama 2023-03-10 13:26:13 +09:00
parent 257b38cec7
commit 0744c35517
7 changed files with 280 additions and 69 deletions

View file

@ -1034,6 +1034,10 @@ impl Context {
attrs
}
pub fn local_dir(&self) -> Dict<&VarName, &VarInfo> {
self.type_dir(self)
}
pub(crate) fn mod_cache(&self) -> &SharedModuleCache {
&self.shared().mod_cache
}