MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / tokAt

Function tokAt

lib/token.h:252–255  ·  view source on GitHub ↗

* @return token in given index, related to this token. * For example index 1 would return next token, and 2 * would return next from that one. */

Source from the content-addressed store, hash-verified

250 * would return next from that one.
251 */
252 const Token *tokAt(int index) const
253 {
254 return tokAtImpl(this, index);
255 }
256 Token *tokAt(int index)
257 {
258 return tokAtImpl(this, index);

Callers 2

strtokensMethod · 0.85
misra_15_6Method · 0.85

Calls 1

tokAtImplFunction · 0.85

Tested by

no test coverage detected