mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 05:53:45 +00:00
fix depth check for float split step
This commit is contained in:
parent
c6e7917d6e
commit
f6539b139e
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ impl TopEntryPoint {
|
||||||
match step {
|
match step {
|
||||||
Step::Enter { .. } => depth += 1,
|
Step::Enter { .. } => depth += 1,
|
||||||
Step::Exit => 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 { .. } => (),
|
Step::Token { .. } | Step::Error { .. } => (),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue