From a298c20f8237603419278f545eadbbe24c344691 Mon Sep 17 00:00:00 2001 From: Igor Date: Sat, 16 Nov 2024 12:56:47 +0400 Subject: [PATCH] stop dumping pratt into `combinator` namespace until we find a satisfactory api based on https://github.com/winnow-rs/winnow/pull/614#discussion_r1838607344 > "We are dumping a lot of stray types into combinator. The single-line summaries should make it very easy to tell they are related to precedence" --- src/combinator/mod.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/combinator/mod.rs b/src/combinator/mod.rs index 1a9cf276..574c906b 100644 --- a/src/combinator/mod.rs +++ b/src/combinator/mod.rs @@ -164,10 +164,9 @@ mod core; mod debug; mod multi; mod parser; -mod precedence; mod sequence; -mod shunting_yard; +pub mod precedence; #[cfg(test)] mod tests;