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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
use sway_error::warning::{CompileWarning, Warning};
use sway_types::{style::is_screaming_snake_case, Spanned};
use crate::{
decl_engine::{DeclRef, ReplaceFunctionImplementingType},
error::*,
language::{parsed, ty},
semantic_analysis::TypeCheckContext,
type_system::*,
CompileResult,
};
impl ty::TyDeclaration {
pub(crate) fn type_check(
mut ctx: TypeCheckContext,
decl: parsed::Declaration,
) -> CompileResult<ty::TyDeclaration> {
let mut warnings = vec![];
let mut errors = vec![];
let type_engine = ctx.type_engine;
let decl_engine = ctx.decl_engine;
let engines = ctx.engines();
let decl = match decl {
parsed::Declaration::VariableDeclaration(parsed::VariableDeclaration {
name,
mut type_ascription,
body,
is_mutable,
}) => {
type_ascription.type_id = check!(
ctx.resolve_type_with_self(
type_ascription.type_id,
&type_ascription.span,
EnforceTypeArguments::Yes,
None
),
type_engine.insert(decl_engine, TypeInfo::ErrorRecovery),
warnings,
errors
);
let mut ctx = ctx
.with_type_annotation(type_ascription.type_id)
.with_help_text(
"Variable declaration's type annotation does not match up \
with the assigned expression's type.",
);
let result = ty::TyExpression::type_check(ctx.by_ref(), body);
let body = check!(
result,
ty::TyExpression::error(name.span(), engines),
warnings,
errors
);
// Integers are special in the sense that we can't only rely on the type of `body`
// to get the type of the variable. The type of the variable *has* to follow
// `type_ascription` if `type_ascription` is a concrete integer type that does not
// conflict with the type of `body` (i.e. passes the type checking above).
let return_type = match type_engine.get(type_ascription.type_id) {
TypeInfo::UnsignedInteger(_) => type_ascription.type_id,
_ => body.return_type,
};
let typed_var_decl =
ty::TyDeclaration::VariableDeclaration(Box::new(ty::TyVariableDeclaration {
name: name.clone(),
body,
mutability: ty::VariableMutability::new_from_ref_mut(false, is_mutable),
return_type,
type_ascription,
}));
check!(
ctx.namespace.insert_symbol(name, typed_var_decl.clone()),
return err(warnings, errors),
warnings,
errors
);
typed_var_decl
}
parsed::Declaration::ConstantDeclaration(parsed::ConstantDeclaration {
name,
mut type_ascription,
value,
visibility,
attributes,
is_configurable,
span,
}) => {
type_ascription.type_id = check!(
ctx.resolve_type_with_self(
type_ascription.type_id,
&span,
EnforceTypeArguments::No,
None
),
type_engine.insert(decl_engine, TypeInfo::ErrorRecovery),
warnings,
errors,
);
let mut ctx = ctx
.by_ref()
.with_type_annotation(type_ascription.type_id)
.with_help_text(
"This declaration's type annotation does not match up with the assigned \
expression's type.",
);
let result = ty::TyExpression::type_check(ctx.by_ref(), value);
if !is_screaming_snake_case(name.as_str()) {
warnings.push(CompileWarning {
span: name.span(),
warning_content: Warning::NonScreamingSnakeCaseConstName {
name: name.clone(),
},
})
}
let value = check!(
result,
ty::TyExpression::error(name.span(), engines),
warnings,
errors
);
// Integers are special in the sense that we can't only rely on the type of `body`
// to get the type of the variable. The type of the variable *has* to follow
// `type_ascription` if `type_ascription` is a concrete integer type that does not
// conflict with the type of `body` (i.e. passes the type checking above).
type_ascription.type_id = match type_engine.get(type_ascription.type_id) {
TypeInfo::UnsignedInteger(_) => type_ascription.type_id,
_ => value.return_type,
};
let decl = ty::TyConstantDeclaration {
name: name.clone(),
value,
visibility,
attributes,
type_ascription,
is_configurable,
span,
};
let decl_ref = decl_engine.insert(decl);
let typed_const_decl = ty::TyDeclaration::ConstantDeclaration {
name: decl_ref.name,
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
};
check!(
ctx.namespace.insert_symbol(name, typed_const_decl.clone()),
return err(warnings, errors),
warnings,
errors
);
typed_const_decl
}
parsed::Declaration::EnumDeclaration(decl) => {
let span = decl.span.clone();
let enum_decl = check!(
ty::TyEnumDeclaration::type_check(ctx.by_ref(), decl),
return ok(ty::TyDeclaration::ErrorRecovery(span), warnings, errors),
warnings,
errors
);
let call_path = enum_decl.call_path.clone();
let decl_ref = decl_engine.insert(enum_decl);
let decl = ty::TyDeclaration::EnumDeclaration {
name: decl_ref.name,
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
};
check!(
ctx.namespace.insert_symbol(call_path.suffix, decl.clone()),
return err(warnings, errors),
warnings,
errors
);
decl
}
parsed::Declaration::FunctionDeclaration(fn_decl) => {
let span = fn_decl.span.clone();
let mut ctx =
ctx.with_type_annotation(type_engine.insert(decl_engine, TypeInfo::Unknown));
let fn_decl = check!(
ty::TyFunctionDeclaration::type_check(ctx.by_ref(), fn_decl, false, false),
return ok(ty::TyDeclaration::ErrorRecovery(span), warnings, errors),
warnings,
errors
);
let name = fn_decl.name.clone();
let decl_ref = decl_engine.insert(fn_decl);
let decl = ty::TyDeclaration::FunctionDeclaration {
name: decl_ref.name,
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
};
ctx.namespace.insert_symbol(name, decl.clone());
decl
}
parsed::Declaration::TraitDeclaration(trait_decl) => {
let span = trait_decl.span.clone();
let mut trait_decl = check!(
ty::TyTraitDeclaration::type_check(ctx.by_ref(), trait_decl),
return ok(ty::TyDeclaration::ErrorRecovery(span), warnings, errors),
warnings,
errors
);
let name = trait_decl.name.clone();
// save decl_refs for the LSP
for supertrait in trait_decl.supertraits.iter_mut() {
ctx.namespace
.resolve_call_path(&supertrait.name)
.cloned()
.map(|supertrait_decl| {
if let ty::TyDeclaration::TraitDeclaration {
name: supertrait_name,
decl_id: supertrait_decl_id,
decl_span: supertrait_decl_span,
} = supertrait_decl
{
supertrait.decl_ref = Some(DeclRef::new(
supertrait_name,
*supertrait_decl_id,
supertrait_decl_span,
));
}
});
}
let decl_ref = decl_engine.insert(trait_decl.clone());
let decl = ty::TyDeclaration::TraitDeclaration {
name: decl_ref.name,
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
};
trait_decl
.methods
.iter_mut()
.for_each(|method| method.replace_implementing_type(engines, decl.clone()));
check!(
ctx.namespace.insert_symbol(name, decl.clone()),
return err(warnings, errors),
warnings,
errors
);
decl
}
parsed::Declaration::ImplTrait(impl_trait) => {
let span = impl_trait.block_span.clone();
let mut impl_trait = check!(
ty::TyImplTrait::type_check_impl_trait(ctx.by_ref(), impl_trait),
return ok(ty::TyDeclaration::ErrorRecovery(span), warnings, errors),
warnings,
errors
);
check!(
ctx.namespace.insert_trait_implementation(
impl_trait.trait_name.clone(),
impl_trait.trait_type_arguments.clone(),
impl_trait.implementing_for.type_id,
&impl_trait.methods,
&impl_trait.span,
false,
engines,
),
return err(warnings, errors),
warnings,
errors
);
let decl_ref = decl_engine.insert(impl_trait.clone());
let impl_trait_decl = ty::TyDeclaration::ImplTrait {
name: decl_ref.name,
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
};
impl_trait.methods.iter_mut().for_each(|method| {
method.replace_implementing_type(engines, impl_trait_decl.clone())
});
impl_trait_decl
}
parsed::Declaration::ImplSelf(impl_self) => {
let span = impl_self.block_span.clone();
let mut impl_trait = check!(
ty::TyImplTrait::type_check_impl_self(ctx.by_ref(), impl_self),
return ok(ty::TyDeclaration::ErrorRecovery(span), warnings, errors),
warnings,
errors
);
check!(
ctx.namespace.insert_trait_implementation(
impl_trait.trait_name.clone(),
impl_trait.trait_type_arguments.clone(),
impl_trait.implementing_for.type_id,
&impl_trait.methods,
&impl_trait.span,
true,
engines,
),
return err(warnings, errors),
warnings,
errors
);
let decl_ref = decl_engine.insert(impl_trait.clone());
let impl_trait_decl = ty::TyDeclaration::ImplTrait {
name: decl_ref.name,
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
};
impl_trait.methods.iter_mut().for_each(|method| {
method.replace_implementing_type(engines, impl_trait_decl.clone())
});
impl_trait_decl
}
parsed::Declaration::StructDeclaration(decl) => {
let span = decl.span.clone();
let decl = check!(
ty::TyStructDeclaration::type_check(ctx.by_ref(), decl),
return ok(ty::TyDeclaration::ErrorRecovery(span), warnings, errors),
warnings,
errors
);
let call_path = decl.call_path.clone();
let decl_ref = decl_engine.insert(decl);
let decl = ty::TyDeclaration::StructDeclaration {
name: decl_ref.name,
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
};
// insert the struct decl into namespace
check!(
ctx.namespace.insert_symbol(call_path.suffix, decl.clone()),
return err(warnings, errors),
warnings,
errors
);
decl
}
parsed::Declaration::AbiDeclaration(abi_decl) => {
let span = abi_decl.span.clone();
let mut abi_decl = check!(
ty::TyAbiDeclaration::type_check(ctx.by_ref(), abi_decl),
return ok(ty::TyDeclaration::ErrorRecovery(span), warnings, errors),
warnings,
errors
);
let name = abi_decl.name.clone();
// save decl_refs for the LSP
for supertrait in abi_decl.supertraits.iter_mut() {
ctx.namespace
.resolve_call_path(&supertrait.name)
.cloned()
.map(|supertrait_decl| {
if let ty::TyDeclaration::TraitDeclaration {
name: supertrait_name,
decl_id: supertrait_decl_id,
decl_span: supertrait_decl_span,
} = supertrait_decl
{
supertrait.decl_ref = Some(DeclRef::new(
supertrait_name,
*supertrait_decl_id,
supertrait_decl_span,
));
}
});
}
let decl_ref = decl_engine.insert(abi_decl.clone());
let decl = ty::TyDeclaration::AbiDeclaration {
name: decl_ref.name,
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
};
abi_decl
.methods
.iter_mut()
.for_each(|method| method.replace_implementing_type(engines, decl.clone()));
check!(
ctx.namespace.insert_symbol(name, decl.clone()),
return err(warnings, errors),
warnings,
errors
);
decl
}
parsed::Declaration::StorageDeclaration(parsed::StorageDeclaration {
span,
fields,
attributes,
..
}) => {
let mut fields_buf = Vec::with_capacity(fields.len());
for parsed::StorageField {
name,
initializer,
mut type_argument,
attributes,
span: field_span,
..
} in fields
{
type_argument.type_id = check!(
ctx.resolve_type_without_self(type_argument.type_id, &name.span(), None),
return err(warnings, errors),
warnings,
errors
);
let mut ctx = ctx.by_ref().with_type_annotation(type_argument.type_id);
let initializer = check!(
ty::TyExpression::type_check(ctx.by_ref(), initializer),
return err(warnings, errors),
warnings,
errors,
);
fields_buf.push(ty::TyStorageField {
name,
type_argument,
initializer,
span: field_span,
attributes,
});
}
let decl = ty::TyStorageDeclaration::new(fields_buf, span, attributes);
let decl_ref = decl_engine.insert(decl);
// insert the storage declaration into the symbols
// if there already was one, return an error that duplicate storage
// declarations are not allowed
check!(
ctx.namespace.set_storage_declaration(decl_ref.clone()),
return err(warnings, errors),
warnings,
errors
);
ty::TyDeclaration::StorageDeclaration {
decl_id: decl_ref.id,
decl_span: decl_ref.decl_span,
}
}
};
ok(decl, warnings, errors)
}
}