Unnamed repository; edit this file 'description' to name the repository.
fix depth check for float split step
| -rw-r--r-- | crates/parser/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs index 6c72b5994b..9b895ff3ca 100644 --- a/crates/parser/src/lib.rs +++ b/crates/parser/src/lib.rs @@ -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 { .. } => (), } } |