diff --git a/src/nom/combinators.rs b/src/nom/combinators.rs index 63fd448..78dbd1d 100644 --- a/src/nom/combinators.rs +++ b/src/nom/combinators.rs @@ -31,6 +31,7 @@ pub fn parenthesized<'a, Parser, R>(inner: Parser) -> impl FnMut(&'a str) -> IRe where Parser: FnMut(&'a str) -> IResult<&'a str, R>, { + // TODO move trim out of here delimited(char('('), trim(inner), char(')')) }