fix depth check for float split step
This commit is contained in:
parent
c6e7917d6e
commit
f6539b139e
@ -102,7 +102,7 @@ pub fn parse(&self, input: &Input) -> Output {
|
||||
match step {
|
||||
Step::Enter { .. } => depth += 1,
|
||||
Step::Exit => depth -= 1,
|
||||
Step::FloatSplit { .. } => depth -= 1,
|
||||
Step::FloatSplit { has_pseudo_dot } => depth -= 1 + !has_pseudo_dot as usize,
|
||||
Step::Token { .. } | Step::Error { .. } => (),
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user