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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
use crate::{
parser::Rule,
style::{to_screaming_snake_case, to_snake_case, to_upper_camel_case},
type_engine::*,
};
use sway_types::{ident::Ident, span::Span};
use std::fmt;
use thiserror::Error;
macro_rules! check {
($fn_expr: expr, $error_recovery: expr, $warnings: ident, $errors: ident $(,)?) => {{
let mut res = $fn_expr;
$warnings.append(&mut res.warnings);
$errors.append(&mut res.errors);
#[allow(clippy::manual_unwrap_or)]
match res.value {
None => $error_recovery,
Some(value) => value,
}
}};
}
macro_rules! check_std_result {
($result_expr: expr, $warnings: ident, $errors: ident $(,)?) => {{
match $result_expr {
Ok(res) => res,
Err(e) => {
$errors.push(e.into());
return err($warnings, $errors);
}
}
}};
}
macro_rules! assert_or_warn {
($bool_expr: expr, $warnings: ident, $span: expr, $warning: expr $(,)?) => {
if !$bool_expr {
use crate::error::CompileWarning;
$warnings.push(CompileWarning {
warning_content: $warning,
span: $span,
});
}
};
}
pub(crate) fn err<T>(warnings: Vec<CompileWarning>, errors: Vec<CompileError>) -> CompileResult<T> {
CompileResult {
value: None,
warnings,
errors,
}
}
pub(crate) fn ok<T>(
value: T,
warnings: Vec<CompileWarning>,
errors: Vec<CompileError>,
) -> CompileResult<T> {
CompileResult {
value: Some(value),
warnings,
errors,
}
}
#[derive(Debug, Clone)]
pub struct CompileResult<T> {
pub value: Option<T>,
pub warnings: Vec<CompileWarning>,
pub errors: Vec<CompileError>,
}
impl<T> From<Result<T, TypeError>> for CompileResult<T> {
fn from(o: Result<T, TypeError>) -> Self {
match o {
Ok(o) => CompileResult {
value: Some(o),
warnings: vec![],
errors: vec![],
},
Err(e) => CompileResult {
value: None,
warnings: vec![],
errors: vec![e.into()],
},
}
}
}
impl<T> CompileResult<T> {
pub fn new(value: Option<T>, warnings: Vec<CompileWarning>, errors: Vec<CompileError>) -> Self {
CompileResult {
value,
warnings,
errors,
}
}
pub fn ok(
mut self,
warnings: &mut Vec<CompileWarning>,
errors: &mut Vec<CompileError>,
) -> Option<T> {
warnings.append(&mut self.warnings);
errors.append(&mut self.errors);
self.value
}
pub fn map<U, F: FnOnce(T) -> U>(self, f: F) -> CompileResult<U> {
match self.value {
None => err(self.warnings, self.errors),
Some(value) => ok(f(value), self.warnings, self.errors),
}
}
pub fn flat_map<U, F: FnOnce(T) -> CompileResult<U>>(self, f: F) -> CompileResult<U> {
match self.value {
None => err(self.warnings, self.errors),
Some(value) => {
let res = f(value);
CompileResult {
value: res.value,
warnings: [self.warnings, res.warnings].concat(),
errors: [self.errors, res.errors].concat(),
}
}
}
}
pub fn unwrap(self, warnings: &mut Vec<CompileWarning>, errors: &mut Vec<CompileError>) -> T {
let panic_msg = format!("Unwrapped an err {:?}", self.errors);
self.unwrap_or_else(warnings, errors, || panic!("{}", panic_msg))
}
pub fn unwrap_or_else<F: FnOnce() -> T>(
self,
warnings: &mut Vec<CompileWarning>,
errors: &mut Vec<CompileError>,
or_else: F,
) -> T {
self.ok(warnings, errors).unwrap_or_else(or_else)
}
}
#[derive(Debug, Clone, PartialEq, Hash)]
pub struct CompileWarning {
pub span: Span,
pub warning_content: Warning,
}
#[derive(Clone, Copy)]
pub struct LineCol {
pub line: usize,
pub col: usize,
}
impl From<(usize, usize)> for LineCol {
fn from(o: (usize, usize)) -> Self {
LineCol {
line: o.0,
col: o.1,
}
}
}
impl CompileWarning {
pub fn to_friendly_warning_string(&self) -> String {
self.warning_content.to_string()
}
pub fn span(&self) -> (usize, usize) {
(self.span.start(), self.span.end())
}
pub fn path(&self) -> String {
self.span.path()
}
pub fn line_col(&self) -> (LineCol, LineCol) {
(
self.span.start_pos().line_col().into(),
self.span.end_pos().line_col().into(),
)
}
}
#[derive(Debug, Clone, PartialEq, Hash)]
pub enum Warning {
NonClassCaseStructName {
struct_name: Ident,
},
NonClassCaseTraitName {
name: Ident,
},
NonClassCaseEnumName {
enum_name: Ident,
},
NonClassCaseEnumVariantName {
variant_name: Ident,
},
NonSnakeCaseStructFieldName {
field_name: Ident,
},
NonSnakeCaseFunctionName {
name: Ident,
},
NonScreamingSnakeCaseConstName {
name: Ident,
},
LossOfPrecision {
initial_type: IntegerBits,
cast_to: IntegerBits,
},
UnusedReturnValue {
r#type: TypeInfo,
},
SimilarMethodFound {
lib: Ident,
module: Ident,
name: Ident,
},
ShadowsOtherSymbol {
name: String,
},
OverridingTraitImplementation,
DeadDeclaration,
DeadFunctionDeclaration,
DeadStructDeclaration,
DeadTrait,
UnreachableCode,
DeadEnumVariant {
variant_name: String,
},
DeadMethod,
StructFieldNeverRead,
ShadowingReservedRegister {
reg_name: Ident,
},
}
impl fmt::Display for Warning {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use Warning::*;
match self {
NonClassCaseStructName { struct_name } => {
write!(f,
"Struct name \"{}\" is not idiomatic. Structs should have a ClassCase name, like \
\"{}\".",
struct_name,
to_upper_camel_case(struct_name.as_str())
)
}
NonClassCaseTraitName { name } => {
write!(f,
"Trait name \"{}\" is not idiomatic. Traits should have a ClassCase name, like \
\"{}\".",
name,
to_upper_camel_case(name.as_str())
)
}
NonClassCaseEnumName { enum_name } => write!(
f,
"Enum \"{}\"'s capitalization is not idiomatic. Enums should have a ClassCase \
name, like \"{}\".",
enum_name,
to_upper_camel_case(enum_name.as_str())
),
NonSnakeCaseStructFieldName { field_name } => write!(
f,
"Struct field name \"{}\" is not idiomatic. Struct field names should have a \
snake_case name, like \"{}\".",
field_name,
to_snake_case(field_name.as_str())
),
NonClassCaseEnumVariantName { variant_name } => write!(
f,
"Enum variant name \"{}\" is not idiomatic. Enum variant names should be \
ClassCase, like \"{}\".",
variant_name,
to_upper_camel_case(variant_name.as_str())
),
NonSnakeCaseFunctionName { name } => {
write!(f,
"Function name \"{}\" is not idiomatic. Function names should be snake_case, like \
\"{}\".",
name,
to_snake_case(name.as_str())
)
}
NonScreamingSnakeCaseConstName { name } => {
write!(
f,
"Constant name \"{}\" is not idiomatic. Constant names should be SCREAMING_SNAKE_CASE, like \
\"{}\".",
name,
to_screaming_snake_case(name.as_str()),
)
},
LossOfPrecision {
initial_type,
cast_to,
} => write!(f,
"This cast, from integer type of width {} to integer type of width {}, will lose precision.",
initial_type.friendly_str(),
cast_to.friendly_str()
),
UnusedReturnValue { r#type } => write!(
f,
"This returns a value of type {}, which is not assigned to anything and is \
ignored.",
r#type.friendly_type_str()
),
SimilarMethodFound { lib, module, name } => write!(
f,
"A method with the same name was found for type {} in dependency \"{}::{}\". \
Traits must be in scope in order to access their methods. ",
name, lib, module
),
ShadowsOtherSymbol { name } => write!(
f,
"This shadows another symbol in this scope with the same name \"{}\".",
name
),
OverridingTraitImplementation => write!(
f,
"This trait implementation overrides another one that was previously defined."
),
DeadDeclaration => write!(f, "This declaration is never used."),
DeadStructDeclaration => write!(f, "This struct is never instantiated."),
DeadFunctionDeclaration => write!(f, "This function is never called."),
UnreachableCode => write!(f, "This code is unreachable."),
DeadEnumVariant { variant_name } => {
write!(f, "Enum variant {} is never constructed.", variant_name)
}
DeadTrait => write!(f, "This trait is never implemented."),
DeadMethod => write!(f, "This method is never called."),
StructFieldNeverRead => write!(f, "This struct field is never accessed."),
ShadowingReservedRegister { reg_name } => write!(
f,
"This register declaration shadows the reserved register, \"{}\".",
reg_name
),
}
}
}
#[derive(Error, Debug, Clone, PartialEq, Hash)]
pub enum CompileError {
#[error("Variable \"{var_name}\" does not exist in this scope.")]
UnknownVariable { var_name: String, span: Span },
#[error("Variable \"{var_name}\" does not exist in this scope.")]
UnknownVariablePath { var_name: Ident, span: Span },
#[error("Function \"{name}\" does not exist in this scope.")]
UnknownFunction { name: Ident, span: Span },
#[error("Identifier \"{name}\" was used as a variable, but it is actually a {what_it_is}.")]
NotAVariable {
name: String,
span: Span,
what_it_is: &'static str,
},
#[error(
"Identifier \"{name}\" was called as if it was a function, but it is actually a \
{what_it_is}."
)]
NotAFunction {
name: String,
span: Span,
what_it_is: &'static str,
},
#[error("Unimplemented feature: {0}")]
Unimplemented(&'static str, Span),
#[error("pattern matching algorithm failure on: {0}")]
PatternMatchingAlgorithmFailure(&'static str, Span),
#[error("{0}")]
TypeError(TypeError),
#[error("Error parsing input: expected {err:?}")]
ParseFailure {
span: Span,
err: pest::error::Error<Rule>,
},
#[error("Error parsing input: {err:?}")]
ParseError { span: Span, err: String },
#[error(
"Invalid top-level item: {0:?}. A program should consist of a contract, script, or \
predicate at the top level."
)]
InvalidTopLevelItem(Rule, Span),
#[error(
"Internal compiler error: {0}\nPlease file an issue on the repository and include the \
code that triggered this error."
)]
Internal(&'static str, Span),
#[error(
"Internal compiler error: {0}\nPlease file an issue on the repository and include the \
code that triggered this error."
)]
InternalOwned(String, Span),
#[error("Unimplemented feature: {0:?}")]
UnimplementedRule(Rule, Span),
#[error(
"Byte literal had length of {byte_length}. Byte literals must be either one byte long (8 \
binary digits or 2 hex digits) or 32 bytes long (256 binary digits or 64 hex digits)"
)]
InvalidByteLiteralLength { byte_length: usize, span: Span },
#[error("Expected an expression to follow operator \"{op}\"")]
ExpectedExprAfterOp { op: String, span: Span },
#[error("Expected an operator, but \"{op}\" is not a recognized operator. ")]
ExpectedOp { op: String, span: Span },
#[error(
"Where clause was specified but there are no generic type parameters. Where clauses can \
only be applied to generic type parameters."
)]
UnexpectedWhereClause(Span),
#[error(
"Specified generic type in where clause \"{type_name}\" not found in generic type \
arguments of function."
)]
UndeclaredGenericTypeInWhereClause { type_name: Ident, span: Span },
#[error(
"Program contains multiple contracts. A valid program should only contain at most one \
contract."
)]
MultipleContracts(Span),
#[error(
"Program contains multiple scripts. A valid program should only contain at most one \
script."
)]
MultipleScripts(Span),
#[error(
"Program contains multiple predicates. A valid program should only contain at most one \
predicate."
)]
MultiplePredicates(Span),
#[error(
"Trait constraint was applied to generic type that is not in scope. Trait \
\"{trait_name}\" cannot constrain type \"{type_name}\" because that type does not exist \
in this scope."
)]
ConstrainedNonExistentType {
trait_name: Ident,
type_name: Ident,
span: Span,
},
#[error(
"Predicate definition contains multiple main functions. Multiple functions in the same \
scope cannot have the same name."
)]
MultiplePredicateMainFunctions(Span),
#[error(
"Predicate declaration contains no main function. Predicates require a main function."
)]
NoPredicateMainFunction(Span),
#[error("A predicate's main function must return a boolean.")]
PredicateMainDoesNotReturnBool(Span),
#[error("Script declaration contains no main function. Scripts require a main function.")]
NoScriptMainFunction(Span),
#[error(
"Script definition contains multiple main functions. Multiple functions in the same scope \
cannot have the same name."
)]
MultipleScriptMainFunctions(Span),
#[error(
"Attempted to reassign to a symbol that is not a variable. Symbol {name} is not a mutable \
variable, it is a {kind}."
)]
ReassignmentToNonVariable {
name: Ident,
kind: &'static str,
span: Span,
},
#[error("Assignment to immutable variable. Variable {0} is not declared as mutable.")]
AssignmentToNonMutable(String, Span),
#[error(
"Generic type \"{name}\" is not in scope. Perhaps you meant to specify type parameters in \
the function signature? For example: \n`fn \
{fn_name}<{comma_separated_generic_params}>({args}) -> ... `"
)]
TypeParameterNotInTypeScope {
name: String,
span: Span,
comma_separated_generic_params: String,
fn_name: Ident,
args: String,
},
#[error(
"Asm opcode has multiple immediates specified, when any opcode has at most one immediate."
)]
MultipleImmediates(Span),
#[error(
"Expected: {expected} \n\
found: {given}. The definition of this function must \
match the one in the trait declaration."
)]
MismatchedTypeInTrait {
span: Span,
given: String,
expected: String,
},
#[error("\"{name}\" is not a trait, so it cannot be \"impl'd\". ")]
NotATrait { span: Span, name: Ident },
#[error("Trait \"{name}\" cannot be found in the current scope.")]
UnknownTrait { span: Span, name: Ident },
#[error("Function \"{name}\" is not a part of trait \"{trait_name}\"'s interface surface.")]
FunctionNotAPartOfInterfaceSurface {
name: Ident,
trait_name: Ident,
span: Span,
},
#[error("Functions are missing from this trait implementation: {missing_functions}")]
MissingInterfaceSurfaceMethods {
missing_functions: String,
span: Span,
},
#[error("Expected {expected} type arguments, but instead found {given}.")]
IncorrectNumberOfTypeArguments {
given: usize,
expected: usize,
span: Span,
},
#[error(
"Struct with name \"{name}\" could not be found in this scope. Perhaps you need to import \
it?"
)]
StructNotFound { name: Ident, span: Span },
#[error(
"The name \"{name}\" does not refer to a struct, but this is an attempted struct \
declaration."
)]
DeclaredNonStructAsStruct { name: Ident, span: Span },
#[error(
"Attempted to access field \"{field_name}\" of non-struct \"{name}\". Field accesses are \
only valid on structs."
)]
AccessedFieldOfNonStruct {
field_name: Ident,
name: Ident,
span: Span,
},
#[error(
"Attempted to access a method on something that has no methods. \"{name}\" is a {thing}, \
not a type with methods."
)]
MethodOnNonValue {
name: Ident,
thing: Ident,
span: Span,
},
#[error("Initialization of struct \"{struct_name}\" is missing field \"{field_name}\".")]
StructMissingField {
field_name: Ident,
struct_name: Ident,
span: Span,
},
#[error("Struct \"{struct_name}\" does not have field \"{field_name}\".")]
StructDoesNotHaveField {
field_name: Ident,
struct_name: Ident,
span: Span,
},
#[error("No method named \"{method_name}\" found for type \"{type_name}\".")]
MethodNotFound {
span: Span,
method_name: String,
type_name: String,
},
#[error("Module \"{name}\" could not be found.")]
ModuleNotFound { span: Span, name: String },
#[error("\"{name}\" is a {actually}, not a struct. Fields can only be accessed on structs.")]
NotAStruct {
name: String,
span: Span,
actually: String,
},
#[error("\"{name}\" is a {actually}, not a tuple. Elements can only be access on tuples.")]
NotATuple {
name: String,
span: Span,
actually: String,
},
#[error("\"{name}\" is a {actually}, not an enum.")]
NotAnEnum {
name: String,
span: Span,
actually: String,
},
#[error(
"Field \"{field_name}\" not found on struct \"{struct_name}\". Available fields are:\n \
{available_fields}"
)]
FieldNotFound {
field_name: Ident,
available_fields: String,
struct_name: String,
span: Span,
},
#[error("Could not find symbol \"{name}\" in this scope.")]
SymbolNotFound { span: Span, name: String },
#[error("Symbol \"{name}\" is private.")]
ImportPrivateSymbol { span: Span, name: String },
#[error(
"Because this if expression's value is used, an \"else\" branch is required and it must \
return type \"{r#type}\""
)]
NoElseBranch { span: Span, r#type: String },
#[error("Use of type `Self` outside of a context in which `Self` refers to a type.")]
UnqualifiedSelfType { span: Span },
#[error(
"Symbol \"{name}\" does not refer to a type, it refers to a {actually_is}. It cannot be \
used in this position."
)]
NotAType {
span: Span,
name: String,
actually_is: &'static str,
},
#[error(
"This enum variant requires an instantiation expression. Try initializing it with \
arguments in parentheses."
)]
MissingEnumInstantiator { span: Span },
#[error(
"This path must return a value of type \"{ty}\" from function \"{function_name}\", but it \
does not."
)]
PathDoesNotReturn {
span: Span,
ty: String,
function_name: Ident,
},
#[error("Expected block to implicitly return a value of type \"{ty}\".")]
ExpectedImplicitReturnFromBlockWithType { span: Span, ty: String },
#[error("Expected block to implicitly return a value.")]
ExpectedImplicitReturnFromBlock { span: Span },
#[error(
"This register was not initialized in the initialization section of the ASM expression. \
Initialized registers are: {initialized_registers}"
)]
UnknownRegister {
span: Span,
initialized_registers: String,
},
#[error("This opcode takes an immediate value but none was provided.")]
MissingImmediate { span: Span },
#[error("This immediate value is invalid.")]
InvalidImmediateValue { span: Span },
#[error(
"This expression was expected to return a value but no return register was specified. \
Provide a register in the implicit return position of this asm expression to return it."
)]
InvalidAssemblyMismatchedReturn { span: Span },
#[error("Variant \"{variant_name}\" does not exist on enum \"{enum_name}\"")]
UnknownEnumVariant {
enum_name: Ident,
variant_name: Ident,
span: Span,
},
#[error("Unknown opcode: \"{op_name}\".")]
UnrecognizedOp { op_name: Ident, span: Span },
#[error("Unknown type \"{ty}\".")]
TypeMustBeKnown { ty: String, span: Span },
#[error("The value \"{val}\" is too large to fit in this 6-bit immediate spot.")]
Immediate06TooLarge { val: u64, span: Span },
#[error("The value \"{val}\" is too large to fit in this 12-bit immediate spot.")]
Immediate12TooLarge { val: u64, span: Span },
#[error("The value \"{val}\" is too large to fit in this 18-bit immediate spot.")]
Immediate18TooLarge { val: u64, span: Span },
#[error("The value \"{val}\" is too large to fit in this 24-bit immediate spot.")]
Immediate24TooLarge { val: u64, span: Span },
#[error("The opcode \"jnei\" is not valid in inline assembly. Use an enclosing if expression instead.")]
DisallowedJnei { span: Span },
#[error(
"The opcode \"ji\" is not valid in inline assembly. Try using function calls instead."
)]
DisallowedJi { span: Span },
#[error(
"The opcode \"lw\" is not valid in inline assembly. Try assigning a static value to a variable instead."
)]
DisallowedLw { span: Span },
#[error(
"This op expects {expected} register(s) as arguments, but you provided {received} register(s)."
)]
IncorrectNumberOfAsmRegisters {
span: Span,
expected: usize,
received: usize,
},
#[error("This op does not take an immediate value.")]
UnnecessaryImmediate { span: Span },
#[error("This reference is ambiguous, and could refer to either a module or an enum of the same name. Try qualifying the name with a path.")]
AmbiguousPath { span: Span },
#[error("This value is not valid within a \"str\" type.")]
InvalidStrType { raw: String, span: Span },
#[error("Unknown type name.")]
UnknownType { span: Span },
#[error("Bytecode can only support programs with up to 2^12 words worth of opcodes. Try refactoring into contract calls? This is a temporary error and will be implemented in the future.")]
TooManyInstructions { span: Span },
#[error(
"No valid {} file (.{}) was found at {file_path}",
crate::constants::LANGUAGE_NAME,
crate::constants::DEFAULT_FILE_EXTENSION
)]
FileNotFound { span: Span, file_path: String },
#[error("The file {file_path} could not be read: {stringified_error}")]
FileCouldNotBeRead {
span: Span,
file_path: String,
stringified_error: String,
},
#[error("This imported file must be a library. It must start with \"library <name>\", where \"name\" is the name of the library this file contains.")]
ImportMustBeLibrary { span: Span },
#[error("An enum instantiaton cannot contain more than one value. This should be a single value of type {ty}.")]
MoreThanOneEnumInstantiator { span: Span, ty: String },
#[error("This enum variant represents the unit type, so it should not be instantiated with any value.")]
UnnecessaryEnumInstantiator { span: Span },
#[error("Cannot find trait \"{name}\" in this scope.")]
TraitNotFound { name: String, span: Span },
#[error("This expression is not valid on the left hand side of a reassignment.")]
InvalidExpressionOnLhs { span: Span },
#[error(
"Function \"{method_name}\" expects {expected} arguments but you provided {received}."
)]
TooManyArgumentsForFunction {
span: Span,
method_name: Ident,
expected: usize,
received: usize,
},
#[error(
"Function \"{method_name}\" expects {expected} arguments but you provided {received}."
)]
TooFewArgumentsForFunction {
span: Span,
method_name: Ident,
expected: usize,
received: usize,
},
#[error("This type is invalid in a function selector. A contract ABI function selector must be a known sized type, not generic.")]
InvalidAbiType { span: Span },
#[error("This is a {actually_is}, not an ABI. An ABI cast requires a valid ABI to cast the address to.")]
NotAnAbi {
span: Span,
actually_is: &'static str,
},
#[error("An ABI can only be implemented for the `Contract` type, so this implementation of an ABI for type \"{ty}\" is invalid.")]
ImplAbiForNonContract { span: Span, ty: String },
#[error("The trait function \"{fn_name}\" in trait \"{trait_name}\" expects {num_args} arguments, but the provided implementation only takes {provided_args} arguments.")]
IncorrectNumberOfInterfaceSurfaceFunctionParameters {
fn_name: Ident,
trait_name: Ident,
num_args: usize,
provided_args: usize,
span: Span,
},
#[error("This parameter was declared as type {should_be}, but argument of type {provided} was provided.")]
ArgumentParameterTypeMismatch {
span: Span,
should_be: String,
provided: String,
},
#[error("Function {fn_name} is recursive, which is unsupported at this time.")]
RecursiveCall { fn_name: Ident, span: Span },
#[error(
"Function {fn_name} is recursive via {call_chain}, which is unsupported at this time."
)]
RecursiveCallChain {
fn_name: Ident,
call_chain: String,
span: Span,
},
#[error(
"The size of this type is not known. Try putting it on the heap or changing the type."
)]
TypeWithUnknownSize { span: Span },
#[error("File {file_path} generates an infinite dependency cycle.")]
InfiniteDependencies { file_path: String, span: Span },
#[error("The GM (get-metadata) opcode, when called from an external context, will cause the VM to panic.")]
GMFromExternalContract { span: Span },
#[error("The MINT opcode cannot be used in an external context.")]
MintFromExternalContext { span: Span },
#[error("The BURN opcode cannot be used in an external context.")]
BurnFromExternalContext { span: Span },
#[error("Contract storage cannot be used in an external context.")]
ContractStorageFromExternalContext { span: Span },
#[error("Array index out of bounds; the length is {count} but the index is {index}.")]
ArrayOutOfBounds { index: u64, count: u64, span: Span },
#[error("Tuple index out of bounds; the arity is {count} but the index is {index}.")]
TupleOutOfBounds {
index: usize,
count: usize,
span: Span,
},
#[error("The name \"{name}\" shadows another symbol with the same name.")]
ShadowsOtherSymbol { name: String, span: Span },
#[error("The name \"{name}\" imported through `*` shadows another symbol with the same name.")]
StarImportShadowsOtherSymbol { name: String, span: Span },
#[error(
"Match expression arm has mismatched types.\n\
expected: {expected}\n\
"
)]
MatchWrongType { expected: TypeId, span: Span },
#[error("Impure function called inside of pure function. Pure functions can only call other pure functions. Try making the surrounding function impure by prepending \"impure\" to the function declaration.")]
PureCalledImpure { span: Span },
#[error("Impure function inside of non-contract. Contract storage is only accessible from contracts.")]
ImpureInNonContract { span: Span },
#[error("Literal value is too large for type {ty}.")]
IntegerTooLarge { span: Span, ty: String },
#[error("Literal value underflows type {ty}.")]
IntegerTooSmall { span: Span, ty: String },
#[error("Literal value contains digits which are not valid for type {ty}.")]
IntegerContainsInvalidDigit { span: Span, ty: String },
#[error("Unexpected alias after an asterisk in an import statement.")]
AsteriskWithAlias { span: Span },
#[error("A trait cannot be a subtrait of an ABI.")]
AbiAsSupertrait { span: Span },
#[error("The name \"{fn_name}\" is defined multiple times for trait \"{trait_name}\".")]
NameDefinedMultipleTimesForTrait {
fn_name: String,
trait_name: String,
span: Span,
},
#[error("The trait \"{supertrait_name}\" is not implemented for type \"{type_name}\"")]
SupertraitImplMissing {
supertrait_name: String,
type_name: String,
span: Span,
},
#[error(
"Implementation of trait \"{supertrait_name}\" is required by this bound in \"{trait_name}\""
)]
SupertraitImplRequired {
supertrait_name: String,
trait_name: String,
span: Span,
},
#[error(
"Contract ABI method parameter \"{param_name}\" is set multiple times for this contract ABI method call"
)]
ContractCallParamRepeated { param_name: String, span: Span },
#[error(
"Unrecognized contract ABI method parameter \"{param_name}\". The only available parameters are \"gas\", \"coins\", and \"asset_id\""
)]
UnrecognizedContractParam { param_name: String, span: Span },
#[error("Attempting to specify a contract method parameter for a non-contract function call")]
CallParamForNonContractCallMethod { span: Span },
}
impl std::convert::From<TypeError> for CompileError {
fn from(other: TypeError) -> CompileError {
CompileError::TypeError(other)
}
}
#[derive(Error, Debug, Clone, PartialEq, Hash)]
pub enum TypeError {
#[error(
"Mismatched types.\n\
expected: {expected}\n\
found: {received}.\n\
{help}", expected=look_up_type_id(*expected).friendly_type_str(), received=look_up_type_id(*received).friendly_type_str(), help=if !help_text.is_empty() { format!("help: {}", help_text) } else { String::new() }
)]
MismatchedType {
expected: TypeId,
received: TypeId,
help_text: String,
span: Span,
},
#[error("This type is not known. Try annotating it with a type annotation.")]
UnknownType { span: Span },
}
impl TypeError {
pub(crate) fn internal_span(&self) -> &Span {
use TypeError::*;
match self {
MismatchedType { span, .. } => span,
UnknownType { span } => span,
}
}
}
impl CompileError {
pub fn to_friendly_error_string(&self) -> String {
match self {
CompileError::ParseFailure { err, .. } => format!(
"Error parsing input: {}",
match &err.variant {
pest::error::ErrorVariant::ParsingError {
positives,
negatives,
} => {
let mut buf = String::new();
if !positives.is_empty() {
buf.push_str(&format!(
"expected one of [{}]",
positives
.iter()
.map(|x| format!("{:?}", x))
.collect::<Vec<_>>()
.join(", ")
));
}
if !negatives.is_empty() {
buf.push_str(&format!(
"did not expect any of [{}]",
negatives
.iter()
.map(|x| format!("{:?}", x))
.collect::<Vec<_>>()
.join(", ")
));
}
buf
}
pest::error::ErrorVariant::CustomError { message } => message.to_string(),
}
),
a => format!("{}", a),
}
}
pub fn span(&self) -> (usize, usize) {
let sp = self.internal_span();
(sp.start(), sp.end())
}
pub fn path(&self) -> String {
self.internal_span().path()
}
pub fn internal_span(&self) -> &Span {
use CompileError::*;
match self {
UnknownVariable { span, .. } => span,
UnknownVariablePath { span, .. } => span,
UnknownFunction { span, .. } => span,
NotAVariable { span, .. } => span,
NotAFunction { span, .. } => span,
Unimplemented(_, span) => span,
TypeError(err) => err.internal_span(),
ParseFailure { span, .. } => span,
ParseError { span, .. } => span,
InvalidTopLevelItem(_, span) => span,
Internal(_, span) => span,
InternalOwned(_, span) => span,
UnimplementedRule(_, span) => span,
InvalidByteLiteralLength { span, .. } => span,
ExpectedExprAfterOp { span, .. } => span,
ExpectedOp { span, .. } => span,
UnexpectedWhereClause(span) => span,
UndeclaredGenericTypeInWhereClause { span, .. } => span,
MultiplePredicates(span) => span,
MultipleScripts(span) => span,
MultipleContracts(span) => span,
ConstrainedNonExistentType { span, .. } => span,
MultiplePredicateMainFunctions(span) => span,
NoPredicateMainFunction(span) => span,
PredicateMainDoesNotReturnBool(span) => span,
NoScriptMainFunction(span) => span,
MultipleScriptMainFunctions(span) => span,
ReassignmentToNonVariable { span, .. } => span,
AssignmentToNonMutable(_, span) => span,
TypeParameterNotInTypeScope { span, .. } => span,
MultipleImmediates(span) => span,
MismatchedTypeInTrait { span, .. } => span,
NotATrait { span, .. } => span,
UnknownTrait { span, .. } => span,
FunctionNotAPartOfInterfaceSurface { span, .. } => span,
MissingInterfaceSurfaceMethods { span, .. } => span,
IncorrectNumberOfTypeArguments { span, .. } => span,
StructNotFound { span, .. } => span,
DeclaredNonStructAsStruct { span, .. } => span,
AccessedFieldOfNonStruct { span, .. } => span,
MethodOnNonValue { span, .. } => span,
StructMissingField { span, .. } => span,
StructDoesNotHaveField { span, .. } => span,
MethodNotFound { span, .. } => span,
ModuleNotFound { span, .. } => span,
NotATuple { span, .. } => span,
NotAStruct { span, .. } => span,
FieldNotFound { span, .. } => span,
SymbolNotFound { span, .. } => span,
ImportPrivateSymbol { span, .. } => span,
NoElseBranch { span, .. } => span,
UnqualifiedSelfType { span, .. } => span,
NotAType { span, .. } => span,
MissingEnumInstantiator { span, .. } => span,
PathDoesNotReturn { span, .. } => span,
ExpectedImplicitReturnFromBlockWithType { span, .. } => span,
ExpectedImplicitReturnFromBlock { span, .. } => span,
UnknownRegister { span, .. } => span,
MissingImmediate { span, .. } => span,
InvalidImmediateValue { span, .. } => span,
InvalidAssemblyMismatchedReturn { span, .. } => span,
UnknownEnumVariant { span, .. } => span,
UnrecognizedOp { span, .. } => span,
TypeMustBeKnown { span, .. } => span,
Immediate06TooLarge { span, .. } => span,
Immediate12TooLarge { span, .. } => span,
Immediate18TooLarge { span, .. } => span,
Immediate24TooLarge { span, .. } => span,
DisallowedJnei { span, .. } => span,
DisallowedJi { span, .. } => span,
DisallowedLw { span, .. } => span,
IncorrectNumberOfAsmRegisters { span, .. } => span,
UnnecessaryImmediate { span, .. } => span,
AmbiguousPath { span, .. } => span,
UnknownType { span, .. } => span,
InvalidStrType { span, .. } => span,
TooManyInstructions { span, .. } => span,
FileNotFound { span, .. } => span,
FileCouldNotBeRead { span, .. } => span,
ImportMustBeLibrary { span, .. } => span,
MoreThanOneEnumInstantiator { span, .. } => span,
UnnecessaryEnumInstantiator { span, .. } => span,
TraitNotFound { span, .. } => span,
InvalidExpressionOnLhs { span, .. } => span,
TooManyArgumentsForFunction { span, .. } => span,
TooFewArgumentsForFunction { span, .. } => span,
InvalidAbiType { span, .. } => span,
NotAnAbi { span, .. } => span,
ImplAbiForNonContract { span, .. } => span,
IncorrectNumberOfInterfaceSurfaceFunctionParameters { span, .. } => span,
ArgumentParameterTypeMismatch { span, .. } => span,
RecursiveCall { span, .. } => span,
RecursiveCallChain { span, .. } => span,
TypeWithUnknownSize { span, .. } => span,
InfiniteDependencies { span, .. } => span,
GMFromExternalContract { span, .. } => span,
MintFromExternalContext { span, .. } => span,
BurnFromExternalContext { span, .. } => span,
ContractStorageFromExternalContext { span, .. } => span,
ArrayOutOfBounds { span, .. } => span,
TupleOutOfBounds { span, .. } => span,
ShadowsOtherSymbol { span, .. } => span,
StarImportShadowsOtherSymbol { span, .. } => span,
MatchWrongType { span, .. } => span,
NotAnEnum { span, .. } => span,
PatternMatchingAlgorithmFailure(_, span) => span,
PureCalledImpure { span, .. } => span,
ImpureInNonContract { span, .. } => span,
IntegerTooLarge { span, .. } => span,
IntegerTooSmall { span, .. } => span,
IntegerContainsInvalidDigit { span, .. } => span,
AsteriskWithAlias { span, .. } => span,
AbiAsSupertrait { span, .. } => span,
NameDefinedMultipleTimesForTrait { span, .. } => span,
SupertraitImplMissing { span, .. } => span,
SupertraitImplRequired { span, .. } => span,
ContractCallParamRepeated { span, .. } => span,
UnrecognizedContractParam { span, .. } => span,
CallParamForNonContractCallMethod { span, .. } => span,
}
}
pub fn line_col(&self) -> (LineCol, LineCol) {
(
self.internal_span().start_pos().line_col().into(),
self.internal_span().end_pos().line_col().into(),
)
}
}