| 2047 | } |
| 2048 | |
| 2049 | ParserFunctor *ParserContext::repeatPlus(ParserFunctor *parser) |
| 2050 | { |
| 2051 | return p_and(parser, repeatStar(parser)); |
| 2052 | } |
| 2053 | |
| 2054 | ParserFunctor *ParserContext::repeatCount(ParserFunctor *parser, size_t n) |
| 2055 | { |
no outgoing calls
no test coverage detected