1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
use crate::{
language::{ty, CallPath},
CompileResult, Ident,
};
use super::{module::Module, namespace::Namespace, Path};
#[derive(Clone, Debug)]
pub struct Root {
pub(crate) module: Module,
}
impl Root {
pub(crate) fn resolve_call_path(
&self,
mod_path: &Path,
call_path: &CallPath,
) -> CompileResult<&ty::TyDeclaration> {
let symbol_path: Vec<_> = mod_path
.iter()
.chain(&call_path.prefixes)
.cloned()
.collect();
self.resolve_symbol(&symbol_path, &call_path.suffix)
}
pub(crate) fn resolve_symbol(
&self,
mod_path: &Path,
symbol: &Ident,
) -> CompileResult<&ty::TyDeclaration> {
self.check_submodule(mod_path).flat_map(|module| {
let true_symbol = self[mod_path]
.use_aliases
.get(symbol.as_str())
.unwrap_or(symbol);
match module.use_synonyms.get(symbol) {
Some((src_path, _)) if mod_path != src_path => {
self.resolve_symbol(src_path, true_symbol)
}
_ => CompileResult::from(module.check_symbol(true_symbol)),
}
})
}
}
impl std::ops::Deref for Root {
type Target = Module;
fn deref(&self) -> &Self::Target {
&self.module
}
}
impl std::ops::DerefMut for Root {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.module
}
}
impl From<Module> for Root {
fn from(module: Module) -> Self {
Root { module }
}
}
impl From<Namespace> for Root {
fn from(namespace: Namespace) -> Self {
namespace.root
}
}