Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/KDE/kdevelop
/ isEndIdentifierCharacter
Function
isEndIdentifierCharacter
plugins/qmakemanager/parser/qmakelexer.cpp:28–32 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
26
}
27
28
bool isEndIdentifierCharacter(QChar* c)
29
{
30
return (c->isLetter() || c->isDigit() || c->unicode() ==
'_'
|| c->unicode() ==
'.'
|| c->unicode() ==
'$'
31
|| c->unicode() ==
'*'
);
32
}
33
34
bool isCont(QChar* c)
35
{
Callers
1
nextTokenKind
Method · 0.85
Calls
1
isDigit
Method · 0.80
Tested by
no test coverage detected