remove unused method

This commit is contained in:
liquidex 2023-08-28 19:21:45 +02:00
parent 1dfb3ccef9
commit 5b8f100121

View file

@ -74,13 +74,6 @@ impl<'a> Parser<'a> {
} }
} }
fn eat_until(&mut self, cond: impl Fn(char) -> bool) {
while self.current().map(&cond).is_some_and(|x| !x) {
self.advance();
}
self.advance();
}
fn eat_until_line_break(&mut self) { fn eat_until_line_break(&mut self) {
loop { loop {
match self.current() { match self.current() {
@ -144,7 +137,8 @@ impl<'a> Parser<'a> {
if self.current().map(&cond).is_some_and(identity) || self.current().is_none() { if self.current().map(&cond).is_some_and(identity) || self.current().is_none() {
self.position = before_indentation; self.position = before_indentation;
break; break;
} else if !matches!(self.current(), Some('\n') | Some('\r')) && line_indent_level < indent_level } else if !matches!(self.current(), Some('\n') | Some('\r'))
&& line_indent_level < indent_level
{ {
return Err(ParseErrorKind::InconsistentIndentation { return Err(ParseErrorKind::InconsistentIndentation {
got: line_indent_level, got: line_indent_level,