Shut up Clippy

This commit is contained in:
Seo Sanghyeon
2019-10-12 18:18:45 +09:00
parent e76edde38e
commit 7caeee7810

View File

@@ -47,13 +47,7 @@ impl CompileError {
match parse {
ParseErrorType::Lexical(LexicalErrorType::IndentationError) => true,
ParseErrorType::UnrecognizedToken(token, expected) => {
if *token == Tok::Indent {
true
} else if expected.clone() == Some("Indent".to_string()) {
true
} else {
false
}
*token == Tok::Indent || expected.clone() == Some("Indent".to_string())
}
_ => false,
}