From b6101184537b1165cfdd5fc473e04ad4c5b7bffa Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Mon, 2 Nov 2020 13:13:32 +0100 Subject: Deny unreachable-pub It's very useful when `pub` is equivalent to "this is crate's public API", let's enforce this! Ideally, we should enforce it for local `cargo test`, and only during CI, but that needs https://github.com/rust-lang/cargo/issues/5034. --- crates/mbe/src/mbe_expander/matcher.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'crates/mbe/src/mbe_expander') diff --git a/crates/mbe/src/mbe_expander/matcher.rs b/crates/mbe/src/mbe_expander/matcher.rs index b698b9832..39a8eefbd 100644 --- a/crates/mbe/src/mbe_expander/matcher.rs +++ b/crates/mbe/src/mbe_expander/matcher.rs @@ -61,16 +61,16 @@ macro_rules! err { #[derive(Debug, Default)] pub(super) struct Match { - pub bindings: Bindings, + pub(super) bindings: Bindings, /// We currently just keep the first error and count the rest to compare matches. - pub err: Option, - pub err_count: usize, + pub(super) err: Option, + pub(super) err_count: usize, /// How many top-level token trees were left to match. - pub unmatched_tts: usize, + pub(super) unmatched_tts: usize, } impl Match { - pub fn add_err(&mut self, err: ExpandError) { + pub(super) fn add_err(&mut self, err: ExpandError) { let prev_err = self.err.take(); self.err = prev_err.or(Some(err)); self.err_count += 1; -- cgit v1.2.3