flux_desugar/
errors.rs

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
use flux_errors::E0999;
use flux_macros::Diagnostic;
use flux_syntax::surface;
use rustc_span::{Span, Symbol};

#[derive(Diagnostic)]
#[diag(desugar_int_too_large, code = E0999)]
pub(super) struct IntTooLarge {
    #[primary_span]
    pub(super) span: Span,
}

#[derive(Diagnostic)]
#[diag(desugar_unexpected_literal, code = E0999)]
pub(super) struct UnexpectedLiteral {
    #[primary_span]
    pub(super) span: Span,
}

#[derive(Diagnostic)]
#[diag(desugar_invalid_constructor_path, code = E0999)]
pub(super) struct InvalidConstructorPath {
    #[primary_span]
    pub(super) span: Span,
}

#[derive(Diagnostic)]
#[diag(desugar_invalid_loc, code = E0999)]
pub(super) struct InvalidLoc {
    #[primary_span]
    pub(super) span: Span,
}

#[derive(Diagnostic)]
#[diag(desugar_invalid_numeric_suffix, code = E0999)]
pub(super) struct InvalidNumericSuffix {
    #[primary_span]
    #[label]
    span: Span,
    suffix: Symbol,
}

impl InvalidNumericSuffix {
    pub(super) fn new(span: Span, suffix: Symbol) -> Self {
        Self { span, suffix }
    }
}

#[derive(Diagnostic)]
#[diag(desugar_invalid_alias_reft, code = E0999)]
pub(super) struct InvalidAliasReft {
    #[primary_span]
    #[label]
    pub(super) span: Span,
}

impl InvalidAliasReft {
    pub(super) fn new(path: &surface::Path) -> Self {
        Self { span: path.span }
    }
}

#[derive(Diagnostic)]
#[diag(desugar_invalid_variant_ret, code = E0999)]
pub(super) struct InvalidVariantRet {
    #[primary_span]
    pub(super) span: Span,
}

impl InvalidVariantRet {
    pub(super) fn new(path: &surface::Path) -> Self {
        Self { span: path.span }
    }
}

#[derive(Diagnostic)]
#[diag(desugar_invalid_reflected_variant, code = E0999)]
pub(super) struct InvalidReflectedVariant {
    #[primary_span]
    pub(super) span: Span,
}

impl InvalidReflectedVariant {
    pub(super) fn new(span: Span) -> Self {
        Self { span }
    }
}

#[derive(Diagnostic)]
#[diag(desugar_multiple_spreads_in_constructor, code = E0999)]
pub(super) struct MultipleSpreadsInConstructor {
    #[primary_span]
    pub(super) span: Span,
    #[help]
    pub(super) prev_span: Span,
}

impl MultipleSpreadsInConstructor {
    pub(super) fn new(span: Span, prev_span: Span) -> Self {
        Self { span, prev_span }
    }
}

#[derive(Diagnostic)]
#[diag(desugar_unsupported_position, code = E0999)]
pub(super) struct UnsupportedPosition {
    #[primary_span]
    span: Span,
}

impl UnsupportedPosition {
    pub(super) fn new(span: Span) -> Self {
        Self { span }
    }
}