remove attempting argument from parser state

This commit is contained in:
Folkert 2021-03-08 16:33:45 +01:00
parent 784e3ddac4
commit 65cee39041
5 changed files with 12 additions and 12 deletions

View file

@ -43,7 +43,7 @@ pub enum Either<First, Second> {
}
impl<'a> State<'a> {
pub fn new_in(arena: &'a Bump, bytes: &'a [u8], _attempting: Attempting) -> State<'a> {
pub fn new_in(arena: &'a Bump, bytes: &'a [u8]) -> State<'a> {
State {
bytes,
line: 0,