Move consuming the trailing whitespace up to the element matchers.

This commit is contained in:
Tom Alexander
2023-04-21 23:54:54 -04:00
parent 7df899e3a7
commit e97cf6630f
13 changed files with 17 additions and 48 deletions

View File

@@ -1,7 +1,7 @@
use super::Context;
use crate::error::CustomError;
use crate::error::MyError;
use crate::error::Res;
use super::Context;
use crate::parser::element_parser::element;
use crate::parser::exiting::ExitClass;
use crate::parser::greater_element::GreaterBlock;
@@ -87,9 +87,6 @@ pub fn greater_block<'r, 's>(
// Not checking if parent exit matcher is causing exit because the greater_block_end matcher asserts we matched a full greater block
let (remaining, _trailing_ws) =
maybe_consume_trailing_whitespace_if_not_exiting(context, remaining)?;
let source = get_consumed(input, remaining);
Ok((
remaining,