mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
fix depth check for float split step
This commit is contained in:
parent
c6e7917d6e
commit
f6539b139e
@ -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 { .. } => (),
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user