fix tests/more uniq removal

This commit is contained in:
Folkert 2021-02-07 22:50:33 +01:00
parent 309eff6edd
commit ca04411523
18 changed files with 332 additions and 3256 deletions

View file

@ -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),