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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
use crate::{
error::*, semantic_analysis::*, type_system::*, CallPath, CompileResult, Ident, TypeInfo,
TypedDeclaration, TypedFunctionDeclaration,
};
use super::{module::Module, namespace::Namespace, Path};
use sway_types::{span::Span, Spanned};
use std::collections::VecDeque;
#[derive(Clone, Debug, PartialEq)]
pub struct Root {
pub(crate) module: Module,
}
impl Root {
pub(crate) fn resolve_call_path(
&self,
mod_path: &Path,
call_path: &CallPath,
) -> CompileResult<&TypedDeclaration> {
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<&TypedDeclaration> {
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)),
}
})
}
pub(crate) fn resolve_type_with_self(
&mut self,
mut type_id: TypeId,
self_type: TypeId,
span: &Span,
enforce_type_arguments: EnforceTypeArguments,
type_info_prefix: Option<&Path>,
mod_path: &Path,
) -> CompileResult<TypeId> {
type_id.replace_self_type(self_type);
self.resolve_type(
type_id,
span,
enforce_type_arguments,
type_info_prefix,
mod_path,
)
}
pub(crate) fn resolve_type(
&self,
type_id: TypeId,
span: &Span,
enforce_type_arguments: EnforceTypeArguments,
type_info_prefix: Option<&Path>,
mod_path: &Path,
) -> CompileResult<TypeId> {
let mut warnings = vec![];
let mut errors = vec![];
let module_path = match type_info_prefix {
Some(type_info_prefix) => type_info_prefix,
None => mod_path,
};
let type_id = match look_up_type_id(type_id) {
TypeInfo::Custom {
name,
type_arguments,
} => {
match self
.resolve_symbol(module_path, &name)
.ok(&mut warnings, &mut errors)
.cloned()
{
Some(TypedDeclaration::StructDeclaration(mut decl)) => {
check!(
monomorphize(
&mut decl,
&mut type_arguments.unwrap_or_default(),
enforce_type_arguments,
span,
self,
mod_path
),
return err(warnings, errors),
warnings,
errors
);
decl.create_type_id()
}
Some(TypedDeclaration::EnumDeclaration(mut decl)) => {
check!(
monomorphize(
&mut decl,
&mut type_arguments.unwrap_or_default(),
enforce_type_arguments,
span,
self,
mod_path
),
return err(warnings, errors),
warnings,
errors
);
decl.create_type_id()
}
Some(TypedDeclaration::GenericTypeForFunctionScope { name, type_id }) => {
insert_type(TypeInfo::Ref(type_id, name.span()))
}
_ => {
errors.push(CompileError::UnknownTypeName {
name: name.to_string(),
span: name.span(),
});
insert_type(TypeInfo::ErrorRecovery)
}
}
}
TypeInfo::Ref(id, _) => id,
TypeInfo::Array(type_id, n, initial_type_id) => {
let new_type_id = check!(
self.resolve_type(type_id, span, enforce_type_arguments, None, mod_path),
insert_type(TypeInfo::ErrorRecovery),
warnings,
errors
);
insert_type(TypeInfo::Array(new_type_id, n, initial_type_id))
}
TypeInfo::Tuple(mut type_arguments) => {
for type_argument in type_arguments.iter_mut() {
type_argument.type_id = check!(
self.resolve_type(
type_argument.type_id,
span,
enforce_type_arguments,
None,
mod_path
),
insert_type(TypeInfo::ErrorRecovery),
warnings,
errors
);
}
insert_type(TypeInfo::Tuple(type_arguments))
}
o => insert_type(o),
};
ok(type_id, warnings, errors)
}
pub(crate) fn find_method_for_type(
&mut self,
mod_path: &Path,
mut type_id: TypeId,
method_prefix: &Path,
method_name: &Ident,
self_type: TypeId,
args_buf: &VecDeque<TypedExpression>,
) -> CompileResult<TypedFunctionDeclaration> {
let mut warnings = vec![];
let mut errors = vec![];
let local_module = check!(
self.check_submodule(mod_path),
return err(warnings, errors),
warnings,
errors
);
let local_methods = local_module.get_methods_for_type(type_id);
type_id.replace_self_type(self_type);
let type_id = check!(
self.resolve_type(
type_id,
&method_name.span(),
EnforceTypeArguments::No,
None,
method_prefix
),
insert_type(TypeInfo::ErrorRecovery),
warnings,
errors
);
let type_module = check!(
self.check_submodule(method_prefix),
return err(warnings, errors),
warnings,
errors
);
let mut type_methods = type_module.get_methods_for_type(type_id);
let mut methods = local_methods;
methods.append(&mut type_methods);
match methods
.into_iter()
.find(|TypedFunctionDeclaration { name, .. }| name == method_name)
{
Some(o) => ok(o, warnings, errors),
None => {
if args_buf.get(0).map(|x| look_up_type_id(x.return_type))
!= Some(TypeInfo::ErrorRecovery)
{
errors.push(CompileError::MethodNotFound {
method_name: method_name.clone(),
type_name: type_id.to_string(),
});
}
err(warnings, errors)
}
}
}
}
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
}
}