mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-15 09:55:03 +01:00
fix span error
This commit is contained in:
parent
87790d4049
commit
53c2cdb085
4 changed files with 15 additions and 6 deletions
|
|
@ -331,7 +331,10 @@ impl<'code> Parser<'code> {
|
|||
span: next.span,
|
||||
}))
|
||||
}
|
||||
_ => Err(ParseErr::InvalidTokenPrimary(next)),
|
||||
_ => {
|
||||
println!("{:?}", next);
|
||||
Err(ParseErr::InvalidTokenPrimary(next))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue