fn refinements_parser<'a>(
symbols: &Symbols,
i: I<'a>,
) -> IResult<I<'a>, MarkerRefinement>
Expand description
A parser for annotation refinements.
Is not guaranteed to consume the entire input if does not match. You may
want to call nom::combinator::eof
afterwards to guarantee all input has
been consumed.