mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
1.65 clippy fixes
This commit is contained in:
parent
f0d6e418fa
commit
66a1ba00eb
53 changed files with 224 additions and 225 deletions
|
@ -30,7 +30,7 @@ static EMPTY_TAG_UNION: &str = "[]";
|
|||
/// List (List I64)
|
||||
///
|
||||
/// Otherwise, parens are unnecessary.
|
||||
#[derive(Clone, Copy, Debug, PartialEq)]
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
|
||||
pub enum Parens {
|
||||
InFn,
|
||||
InTypeParam,
|
||||
|
|
|
@ -2250,7 +2250,7 @@ pub enum Reason {
|
|||
},
|
||||
}
|
||||
|
||||
#[derive(PartialEq, Debug, Clone)]
|
||||
#[derive(PartialEq, Eq, Debug, Clone)]
|
||||
pub enum Category {
|
||||
Lookup(Symbol),
|
||||
CallResult(Option<Symbol>, CalledVia),
|
||||
|
@ -2334,7 +2334,7 @@ impl AliasKind {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct AliasVar {
|
||||
pub name: Lowercase,
|
||||
pub var: Variable,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue