MCPcopy Create free account
hub / github.com/commontk/CTK / nextToken

Method nextToken

Documentation/CMakeDoxygenFilter.cpp:255–266  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

253 }
254
255 int nextToken()
256 {
257 _lastToken = _curToken;
258 _curToken = _lexer.getToken();
259 while (_curToken == CMakeLexer::TOK_EOL)
260 {
261 // Try to preserve lines in output to allow correct line number referencing by doxygen.
262 _os << std::endl;
263 _curToken = _lexer.getToken();
264 }
265 return _curToken;
266 }
267
268 void handleMacro()
269 {

Callers 1

mainFunction · 0.80

Calls 1

getTokenMethod · 0.80

Tested by

no test coverage detected