| 1654 | } |
| 1655 | |
| 1656 | txBoolean fxQuantifierParseDigits(txPatternParser* parser, txInteger* result) |
| 1657 | { |
| 1658 | txU4 value = 0; |
| 1659 | if (fxPatternParserDecimal(parser, &value)) { |
| 1660 | fxPatternParserNext(parser); |
| 1661 | while (fxPatternParserDecimal(parser, &value)) |
| 1662 | fxPatternParserNext(parser); |
| 1663 | } |
| 1664 | else |
| 1665 | return 0; |
| 1666 | if (value > 0x7FFFFFFF) |
| 1667 | value = 0x7FFFFFFF; |
| 1668 | *result = value; |
| 1669 | return 1; |
| 1670 | } |
| 1671 | |
| 1672 | void* fxSequenceParse(txPatternParser* parser, txInteger character) |
| 1673 | { |
no test coverage detected