| 538 | } |
| 539 | |
| 540 | static bool matchStringOrNull(QString *s) |
| 541 | { |
| 542 | bool matches = matchString(s); |
| 543 | qlonglong num = 0; |
| 544 | if (!matches) |
| 545 | matches = matchInteger(&num); |
| 546 | return matches && num == 0; |
| 547 | } |
| 548 | |
| 549 | /* |
| 550 | * match any expression that can return a number, which can be |
no test coverage detected