MCPcopy Create free account
hub / github.com/GothenburgBitFactory/taskwarrior / isIdentifierNext

Method isIdentifierNext

src/Lexer.cpp:145–150  ·  view source on GitHub ↗

///////////////////////////////////////////////////////////////////////////

Source from the content-addressed store, hash-verified

143
144////////////////////////////////////////////////////////////////////////////////
145bool Lexer::isIdentifierNext(int c) {
146 return c && // Include null character check.
147 c != ':' && // Used in isPair.
148 c != '=' && // Used in isPair.
149 !unicodeWhitespace(c) && !isSingleCharOperator(c);
150}
151
152////////////////////////////////////////////////////////////////////////////////
153bool Lexer::isSingleCharOperator(int c) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected