129 lines
2.4 KiB
Rust
129 lines
2.4 KiB
Rust
use super::*;
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
pub(crate) enum CompileErrorKind<'src> {
|
|
AliasInvalidAttribute {
|
|
alias: &'src str,
|
|
attr: Attribute,
|
|
},
|
|
AliasShadowsRecipe {
|
|
alias: &'src str,
|
|
recipe_line: usize,
|
|
},
|
|
BacktickShebang,
|
|
CircularRecipeDependency {
|
|
recipe: &'src str,
|
|
circle: Vec<&'src str>,
|
|
},
|
|
CircularVariableDependency {
|
|
variable: &'src str,
|
|
circle: Vec<&'src str>,
|
|
},
|
|
DependencyArgumentCountMismatch {
|
|
dependency: &'src str,
|
|
found: usize,
|
|
min: usize,
|
|
max: usize,
|
|
},
|
|
DuplicateAlias {
|
|
alias: &'src str,
|
|
first: usize,
|
|
},
|
|
DuplicateAttribute {
|
|
attribute: &'src str,
|
|
first: usize,
|
|
},
|
|
DuplicateParameter {
|
|
recipe: &'src str,
|
|
parameter: &'src str,
|
|
},
|
|
DuplicateRecipe {
|
|
recipe: &'src str,
|
|
first: usize,
|
|
},
|
|
DuplicateSet {
|
|
setting: &'src str,
|
|
first: usize,
|
|
},
|
|
DuplicateVariable {
|
|
variable: &'src str,
|
|
},
|
|
ExpectedKeyword {
|
|
expected: Vec<Keyword>,
|
|
found: Token<'src>,
|
|
},
|
|
ExtraLeadingWhitespace,
|
|
FunctionArgumentCountMismatch {
|
|
function: &'src str,
|
|
found: usize,
|
|
expected: Range<usize>,
|
|
},
|
|
IncludeMissingPath,
|
|
InconsistentLeadingWhitespace {
|
|
expected: &'src str,
|
|
found: &'src str,
|
|
},
|
|
Internal {
|
|
message: String,
|
|
},
|
|
InvalidEscapeSequence {
|
|
character: char,
|
|
},
|
|
MismatchedClosingDelimiter {
|
|
close: Delimiter,
|
|
open: Delimiter,
|
|
open_line: usize,
|
|
},
|
|
MixedLeadingWhitespace {
|
|
whitespace: &'src str,
|
|
},
|
|
ParameterFollowsVariadicParameter {
|
|
parameter: &'src str,
|
|
},
|
|
ParsingRecursionDepthExceeded,
|
|
RequiredParameterFollowsDefaultParameter {
|
|
parameter: &'src str,
|
|
},
|
|
UndefinedVariable {
|
|
variable: &'src str,
|
|
},
|
|
UnexpectedCharacter {
|
|
expected: char,
|
|
},
|
|
UnexpectedClosingDelimiter {
|
|
close: Delimiter,
|
|
},
|
|
UnexpectedEndOfToken {
|
|
expected: char,
|
|
},
|
|
UnexpectedToken {
|
|
expected: Vec<TokenKind>,
|
|
found: TokenKind,
|
|
},
|
|
UnknownAliasTarget {
|
|
alias: &'src str,
|
|
target: &'src str,
|
|
},
|
|
UnknownAttribute {
|
|
attribute: &'src str,
|
|
},
|
|
UnknownDependency {
|
|
recipe: &'src str,
|
|
unknown: &'src str,
|
|
},
|
|
UnknownDirective {
|
|
directive: &'src str,
|
|
},
|
|
UnknownFunction {
|
|
function: &'src str,
|
|
},
|
|
UnknownSetting {
|
|
setting: &'src str,
|
|
},
|
|
UnknownStartOfToken,
|
|
UnpairedCarriageReturn,
|
|
UnterminatedBacktick,
|
|
UnterminatedInterpolation,
|
|
UnterminatedString,
|
|
}
|