MCPcopy Create free account
hub / github.com/bumptop/BumpTop / matchString

Function matchString

trunk/win/Source/LUpdateString/cpp.cpp:489–500  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

487}
488
489static 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
502static bool matchEncoding(bool *utf8)
503{

Callers 2

matchStringOrNullFunction · 0.85
parseFunction · 0.85

Calls 2

getTokenFunction · 0.85
clearMethod · 0.45

Tested by

no test coverage detected