From ec4078c812ae2e1cb0338bfbb246d9b4979aea80 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sun, 27 Nov 2022 00:14:23 -0500 Subject: [PATCH] Add a blank check_fail_matcher implementation. --- src/parser/new_context.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/parser/new_context.rs b/src/parser/new_context.rs index 18981009..aae99535 100644 --- a/src/parser/new_context.rs +++ b/src/parser/new_context.rs @@ -110,6 +110,10 @@ where fail_matcher: ChainBehavior::AndParent(Some(fail_matcher)) }) } + + pub fn check_fail_matcher<'s>(&'r self, i: &'s str) -> IResult<&'s str, &'s str, VerboseError<&'s str>> { + todo!() + } } fn test_context() {