Cleaner implementation.

This commit is contained in:
Tom Alexander 2022-07-17 18:19:03 -04:00
parent 1506a86d97
commit 804c8fd0b7
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -43,7 +43,7 @@ where
pub fn with_additional_fail_matcher<G>(
self,
additional_fail_matcher: G,
mut additional_fail_matcher: G,
) -> NomContext<
impl Clone + for<'o> FnMut(&'o str) -> IResult<&'o str, &'o str, VerboseError<&'o str>>,
>
@ -52,16 +52,12 @@ where
G: Clone,
{
let mut old_fail_matcher_clone = self.fail_matcher.clone();
let mut new_context =
NomContext::new(move |i| alt((recognize(bold_end), &mut old_fail_matcher_clone))(i));
new_context.can_match_bold = self.can_match_bold;
new_context.can_match_link = self.can_match_link;
// NomContext {
// fail_matcher: move |i| alt((additional_fail_matcher, &mut old_fail_matcher_clone))(i),
// can_match_bold: self.can_match_bold,
// can_match_link: self.can_match_link,
// }
new_context
NomContext {
fail_matcher: move |i| {
alt((&mut additional_fail_matcher, &mut old_fail_matcher_clone))(i)
},
can_match_bold: self.can_match_bold,
can_match_link: self.can_match_link,
}
}
}