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
450
451
452
453
454
455
456
457
458
mod abi;
mod r#enum;
mod function;
mod impl_trait;
mod storage;
mod r#struct;
mod r#trait;
mod variable;
pub use abi::*;
pub use function::*;
pub use impl_trait::*;
pub use r#enum::*;
pub use r#struct::*;
pub use r#trait::*;
pub use storage::*;
pub use variable::*;
use crate::{error::*, parse_tree::*, semantic_analysis::*, type_system::*};
use derivative::Derivative;
use std::{borrow::Cow, fmt};
use sway_types::{Ident, Span, Spanned};
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum TypedDeclaration {
VariableDeclaration(TypedVariableDeclaration),
ConstantDeclaration(TypedConstantDeclaration),
FunctionDeclaration(TypedFunctionDeclaration),
TraitDeclaration(TypedTraitDeclaration),
StructDeclaration(TypedStructDeclaration),
EnumDeclaration(TypedEnumDeclaration),
ImplTrait(TypedImplTrait),
AbiDeclaration(TypedAbiDeclaration),
GenericTypeForFunctionScope { name: Ident, type_id: TypeId },
ErrorRecovery,
StorageDeclaration(TypedStorageDeclaration),
}
impl CopyTypes for TypedDeclaration {
fn copy_types(&mut self, type_mapping: &TypeMapping) {
use TypedDeclaration::*;
match self {
VariableDeclaration(ref mut var_decl) => var_decl.copy_types(type_mapping),
ConstantDeclaration(ref mut const_decl) => const_decl.copy_types(type_mapping),
FunctionDeclaration(ref mut fn_decl) => fn_decl.copy_types(type_mapping),
TraitDeclaration(ref mut trait_decl) => trait_decl.copy_types(type_mapping),
StructDeclaration(ref mut struct_decl) => struct_decl.copy_types(type_mapping),
EnumDeclaration(ref mut enum_decl) => enum_decl.copy_types(type_mapping),
ImplTrait(impl_trait) => impl_trait.copy_types(type_mapping),
AbiDeclaration(..)
| StorageDeclaration(..)
| GenericTypeForFunctionScope { .. }
| ErrorRecovery => (),
}
}
}
impl Spanned for TypedDeclaration {
fn span(&self) -> Span {
use TypedDeclaration::*;
match self {
VariableDeclaration(TypedVariableDeclaration { name, .. }) => name.span(),
ConstantDeclaration(TypedConstantDeclaration { name, .. }) => name.span(),
FunctionDeclaration(TypedFunctionDeclaration { span, .. }) => span.clone(),
TraitDeclaration(TypedTraitDeclaration { name, .. }) => name.span(),
StructDeclaration(TypedStructDeclaration { name, .. }) => name.span(),
EnumDeclaration(TypedEnumDeclaration { span, .. }) => span.clone(),
AbiDeclaration(TypedAbiDeclaration { span, .. }) => span.clone(),
ImplTrait(TypedImplTrait { span, .. }) => span.clone(),
StorageDeclaration(decl) => decl.span(),
ErrorRecovery | GenericTypeForFunctionScope { .. } => {
unreachable!("No span exists for these ast node types")
}
}
}
}
impl fmt::Display for TypedDeclaration {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{} declaration ({})",
self.friendly_name(),
match self {
TypedDeclaration::VariableDeclaration(TypedVariableDeclaration {
mutability,
name,
type_ascription,
body,
..
}) => {
let mut builder = String::new();
match mutability {
VariableMutability::Mutable => builder.push_str("mut"),
VariableMutability::RefMutable => builder.push_str("ref mut"),
VariableMutability::Immutable => {}
VariableMutability::ExportedConst => builder.push_str("pub const"),
}
builder.push_str(name.as_str());
builder.push_str(": ");
builder.push_str(
&crate::type_system::look_up_type_id(*type_ascription).to_string(),
);
builder.push_str(" = ");
builder.push_str(&body.to_string());
builder
}
TypedDeclaration::FunctionDeclaration(TypedFunctionDeclaration {
name, ..
}) => {
name.as_str().into()
}
TypedDeclaration::TraitDeclaration(TypedTraitDeclaration { name, .. }) =>
name.as_str().into(),
TypedDeclaration::StructDeclaration(TypedStructDeclaration { name, .. }) =>
name.as_str().into(),
TypedDeclaration::EnumDeclaration(TypedEnumDeclaration { name, .. }) =>
name.as_str().into(),
_ => String::new(),
}
)
}
}
impl UnresolvedTypeCheck for TypedDeclaration {
fn check_for_unresolved_types(&self) -> Vec<CompileError> {
use TypedDeclaration::*;
match self {
VariableDeclaration(decl) => {
let mut body = decl.body.check_for_unresolved_types();
body.append(&mut decl.type_ascription.check_for_unresolved_types());
body
}
FunctionDeclaration(decl) => {
let mut body: Vec<CompileError> = decl
.body
.contents
.iter()
.flat_map(UnresolvedTypeCheck::check_for_unresolved_types)
.collect();
body.append(&mut decl.return_type.check_for_unresolved_types());
body.append(
&mut decl
.type_parameters
.iter()
.map(|x| &x.type_id)
.flat_map(UnresolvedTypeCheck::check_for_unresolved_types)
.collect(),
);
body.append(
&mut decl
.parameters
.iter()
.map(|x| &x.type_id)
.flat_map(UnresolvedTypeCheck::check_for_unresolved_types)
.collect(),
);
body
}
ConstantDeclaration(TypedConstantDeclaration { value, .. }) => {
value.check_for_unresolved_types()
}
ErrorRecovery
| StorageDeclaration(_)
| TraitDeclaration(_)
| StructDeclaration(_)
| EnumDeclaration(_)
| ImplTrait { .. }
| AbiDeclaration(_)
| GenericTypeForFunctionScope { .. } => vec![],
}
}
}
impl TypedDeclaration {
pub(crate) fn expect_enum(&self) -> CompileResult<&TypedEnumDeclaration> {
let warnings = vec![];
let mut errors = vec![];
match self {
TypedDeclaration::EnumDeclaration(decl) => ok(decl, warnings, errors),
decl => {
errors.push(CompileError::DeclIsNotAnEnum {
actually: decl.friendly_name().to_string(),
span: decl.span(),
});
err(warnings, errors)
}
}
}
pub(crate) fn expect_struct(&self) -> CompileResult<&TypedStructDeclaration> {
let warnings = vec![];
let mut errors = vec![];
match self {
TypedDeclaration::StructDeclaration(decl) => ok(decl, warnings, errors),
decl => {
errors.push(CompileError::DeclIsNotAStruct {
actually: decl.friendly_name().to_string(),
span: decl.span(),
});
err(warnings, errors)
}
}
}
pub(crate) fn expect_function(&self) -> CompileResult<&TypedFunctionDeclaration> {
let warnings = vec![];
let mut errors = vec![];
match self {
TypedDeclaration::FunctionDeclaration(decl) => ok(decl, warnings, errors),
decl => {
errors.push(CompileError::DeclIsNotAFunction {
actually: decl.friendly_name().to_string(),
span: decl.span(),
});
err(warnings, errors)
}
}
}
pub(crate) fn expect_variable(&self) -> CompileResult<&TypedVariableDeclaration> {
let warnings = vec![];
let mut errors = vec![];
match self {
TypedDeclaration::VariableDeclaration(decl) => ok(decl, warnings, errors),
decl => {
errors.push(CompileError::DeclIsNotAVariable {
actually: decl.friendly_name().to_string(),
span: decl.span(),
});
err(warnings, errors)
}
}
}
pub(crate) fn expect_abi(&self) -> CompileResult<&TypedAbiDeclaration> {
let warnings = vec![];
let mut errors = vec![];
match self {
TypedDeclaration::AbiDeclaration(decl) => ok(decl, warnings, errors),
decl => {
errors.push(CompileError::DeclIsNotAnAbi {
actually: decl.friendly_name().to_string(),
span: decl.span(),
});
err(warnings, errors)
}
}
}
pub fn friendly_name(&self) -> &'static str {
use TypedDeclaration::*;
match self {
VariableDeclaration(_) => "variable",
ConstantDeclaration(_) => "constant",
FunctionDeclaration(_) => "function",
TraitDeclaration(_) => "trait",
StructDeclaration(_) => "struct",
EnumDeclaration(_) => "enum",
ImplTrait { .. } => "impl trait",
AbiDeclaration(..) => "abi",
GenericTypeForFunctionScope { .. } => "generic type parameter",
ErrorRecovery => "error",
StorageDeclaration(_) => "contract storage declaration",
}
}
pub(crate) fn return_type(&self) -> CompileResult<TypeId> {
let type_id = match self {
TypedDeclaration::VariableDeclaration(TypedVariableDeclaration { body, .. }) => {
body.return_type
}
TypedDeclaration::FunctionDeclaration { .. } => {
return err(
vec![],
vec![CompileError::Unimplemented(
"Function pointers have not yet been implemented.",
self.span(),
)],
)
}
TypedDeclaration::StructDeclaration(decl) => decl.create_type_id(),
TypedDeclaration::EnumDeclaration(decl) => decl.create_type_id(),
TypedDeclaration::StorageDeclaration(decl) => insert_type(TypeInfo::Storage {
fields: decl.fields_as_typed_struct_fields(),
}),
TypedDeclaration::GenericTypeForFunctionScope { name, type_id } => {
insert_type(TypeInfo::Ref(*type_id, name.span()))
}
decl => {
return err(
vec![],
vec![CompileError::NotAType {
span: decl.span(),
name: decl.to_string(),
actually_is: decl.friendly_name(),
}],
)
}
};
ok(type_id, vec![], vec![])
}
pub(crate) fn visibility(&self) -> Visibility {
use TypedDeclaration::*;
match self {
GenericTypeForFunctionScope { .. }
| ImplTrait { .. }
| StorageDeclaration { .. }
| AbiDeclaration(..)
| ErrorRecovery => Visibility::Public,
VariableDeclaration(TypedVariableDeclaration {
mutability: is_mutable,
..
}) => is_mutable.visibility(),
EnumDeclaration(TypedEnumDeclaration { visibility, .. })
| ConstantDeclaration(TypedConstantDeclaration { visibility, .. })
| FunctionDeclaration(TypedFunctionDeclaration { visibility, .. })
| TraitDeclaration(TypedTraitDeclaration { visibility, .. })
| StructDeclaration(TypedStructDeclaration { visibility, .. }) => *visibility,
}
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct TypedConstantDeclaration {
pub name: Ident,
pub value: TypedExpression,
pub(crate) visibility: Visibility,
}
impl CopyTypes for TypedConstantDeclaration {
fn copy_types(&mut self, type_mapping: &TypeMapping) {
self.value.copy_types(type_mapping);
}
}
#[derive(Clone, Debug, Derivative)]
#[derivative(PartialEq, Eq)]
pub struct TypedTraitFn {
pub name: Ident,
pub(crate) purity: Purity,
pub parameters: Vec<TypedFunctionParameter>,
pub return_type: TypeId,
#[derivative(PartialEq = "ignore")]
#[derivative(Eq(bound = ""))]
pub return_type_span: Span,
}
impl CopyTypes for TypedTraitFn {
fn copy_types(&mut self, type_mapping: &TypeMapping) {
self.return_type
.update_type(type_mapping, &self.return_type_span);
}
}
impl TypedTraitFn {
pub(crate) fn to_dummy_func(&self, mode: Mode) -> TypedFunctionDeclaration {
TypedFunctionDeclaration {
purity: self.purity,
name: self.name.clone(),
body: TypedCodeBlock { contents: vec![] },
parameters: self.parameters.clone(),
span: self.name.span(),
return_type: self.return_type,
initial_return_type: self.return_type,
return_type_span: self.return_type_span.clone(),
visibility: Visibility::Public,
type_parameters: vec![],
is_contract_call: mode == Mode::ImplAbiFn,
}
}
}
#[derive(Clone, Debug, Eq)]
pub struct ReassignmentLhs {
pub kind: ProjectionKind,
pub type_id: TypeId,
}
impl PartialEq for ReassignmentLhs {
fn eq(&self, other: &Self) -> bool {
self.kind == other.kind && look_up_type_id(self.type_id) == look_up_type_id(other.type_id)
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum ProjectionKind {
StructField { name: Ident },
TupleField { index: usize, index_span: Span },
}
impl Spanned for ProjectionKind {
fn span(&self) -> Span {
match self {
ProjectionKind::StructField { name } => name.span(),
ProjectionKind::TupleField { index_span, .. } => index_span.clone(),
}
}
}
impl ProjectionKind {
pub(crate) fn pretty_print(&self) -> Cow<str> {
match self {
ProjectionKind::StructField { name } => Cow::Borrowed(name.as_str()),
ProjectionKind::TupleField { index, .. } => Cow::Owned(index.to_string()),
}
}
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct TypedReassignment {
pub lhs_base_name: Ident,
pub lhs_type: TypeId,
pub lhs_indices: Vec<ProjectionKind>,
pub rhs: TypedExpression,
}
impl CopyTypes for TypedReassignment {
fn copy_types(&mut self, type_mapping: &TypeMapping) {
self.rhs.copy_types(type_mapping);
self.lhs_type
.update_type(type_mapping, &self.lhs_base_name.span());
}
}