mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
fix tests/more uniq removal
This commit is contained in:
parent
309eff6edd
commit
ca04411523
18 changed files with 332 additions and 3256 deletions
|
@ -258,7 +258,7 @@ impl Progress {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum SyntaxError<'a> {
|
||||
Unexpected(Region),
|
||||
OutdentedTooFar,
|
||||
|
@ -278,7 +278,7 @@ pub enum SyntaxError<'a> {
|
|||
type Row = u32;
|
||||
type Col = u16;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum Type<'a> {
|
||||
TRecord(TRecord<'a>, Row, Col),
|
||||
///
|
||||
|
@ -288,7 +288,7 @@ pub enum Type<'a> {
|
|||
TIndentStart(Row, Col),
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum TRecord<'a> {
|
||||
Open(Row, Col),
|
||||
End(Row, Col),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue