MCPcopy Create free account
hub / github.com/KDE/kdevelop / isCont

Function isCont

plugins/qmakemanager/parser/qmakelexer.cpp:34–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34bool isCont(QChar* c)
35{
36 if (c->unicode() == '\\') {
37 c++;
38 while (c->isSpace() && c->unicode() != '\n') {
39 c++;
40 }
41 if (c->unicode() == '\n' || c->unicode() == '#') {
42 return true;
43 }
44 }
45 return false;
46}
47
48Lexer::Lexer(Parser* _parser, QString content)
49 : m_content(std::move(content))

Callers 1

nextTokenKindMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected