| 528 | } |
| 529 | |
| 530 | static bool matchInteger(qlonglong *number) |
| 531 | { |
| 532 | bool matches = (yyTok == Tok_Integer); |
| 533 | if (matches) { |
| 534 | yyTok = getToken(); |
| 535 | *number = yyInteger; |
| 536 | } |
| 537 | return matches; |
| 538 | } |
| 539 | |
| 540 | static bool matchStringOrNull(QString *s) |
| 541 | { |
no test coverage detected