| 1 | //! Deprecated, replaced with [`winnow::combinator`][crate::combinator] |
|---|---|
| 2 | |
| 3 | /// Deprecated, replaced with [`winnow::combinator::trace`][crate::combinator::trace] |
| 4 | #[deprecated(since = "0.5.35", note = "Replaced with `winnow::combinator::trace`")] |
| 5 | #[inline(always)] |
| 6 | pub fn trace<I: crate::stream::Stream, O, E>( |
| 7 | name: impl crate::lib::std::fmt::Display, |
| 8 | parser: impl crate::Parser<I, O, E>, |
| 9 | ) -> impl crate::Parser<I, O, E> { |
| 10 | crate::combinator::trace(name, parser) |
| 11 | } |
| 12 |
