mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-01 15:51:12 +00:00
remove PartialEq for a bunch of types that we should not compare
This commit is contained in:
parent
b59d33a1d5
commit
8b144c446d
15 changed files with 94 additions and 205 deletions
|
@ -108,7 +108,7 @@ pub struct EntryPoint<'a> {
|
|||
#[derive(Clone, Copy, Debug)]
|
||||
pub struct PartialProcId(usize);
|
||||
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct PartialProcs<'a> {
|
||||
/// maps a function name (symbol) to an index
|
||||
symbols: Vec<'a, Symbol>,
|
||||
|
@ -190,7 +190,7 @@ impl<'a> PartialProcs<'a> {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, PartialEq)]
|
||||
#[derive(Clone, Debug)]
|
||||
pub struct PartialProc<'a> {
|
||||
pub annotation: Variable,
|
||||
pub pattern_symbols: &'a [Symbol],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue