| 335 | } |
| 336 | |
| 337 | bool astIsRangeBasedForDecl(const Token* tok) |
| 338 | { |
| 339 | return Token::simpleMatch(tok->astParent(), ":") && Token::simpleMatch(tok->astParent()->astParent(), "("); |
| 340 | } |
| 341 | |
| 342 | std::string astCanonicalType(const Token *expr, bool pointedToType) |
| 343 | { |
no test coverage detected