| 487 | } |
| 488 | |
| 489 | static bool matchString(QString *s) |
| 490 | { |
| 491 | bool matches = (yyTok == Tok_String); |
| 492 | s->clear(); |
| 493 | while (yyTok == Tok_String) { |
| 494 | *s += yyString; |
| 495 | do { |
| 496 | yyTok = getToken(); |
| 497 | } while (yyTok == Tok_Comment); |
| 498 | } |
| 499 | return matches; |
| 500 | } |
| 501 | |
| 502 | static bool matchEncoding(bool *utf8) |
| 503 | { |
no test coverage detected