fix depth check for float split step

This commit is contained in:
Lukas Wirth 2023-02-07 15:31:51 +01:00
parent c6e7917d6e
commit f6539b139e

View File

@ -102,7 +102,7 @@ impl TopEntryPoint {
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 { .. } => (),
}
}