start including tracing
All checks were successful
CI/CD Pipeline / test (push) Successful in 2m11s

This commit is contained in:
2024-02-27 16:03:24 +01:00
parent 2f077a447c
commit cb55a074d7
7 changed files with 152 additions and 12 deletions

View File

@ -76,7 +76,7 @@ impl<'a> Expect<'a> {
fn empty(next: Option<Node<'_, '_>>) {
if let Some(n) = next {
let expect = Expect::from(&n);
assert!(false, "Expected no more elements, got {expect}");
panic!("Expected no more elements, got {expect}");
}
}
}