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

Function isBeginIdentifierCharacter

plugins/qmakemanager/parser/qmakelexer.cpp:23–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23bool isBeginIdentifierCharacter(QChar* c)
24{
25 return (c->isLetter() || c->isDigit() || c->unicode() == '_' || c->unicode() == '.' || c->unicode() == '$');
26}
27
28bool isEndIdentifierCharacter(QChar* c)
29{

Callers 1

nextTokenKindMethod · 0.85

Calls 1

isDigitMethod · 0.80

Tested by

no test coverage detected