| 1603 | } |
| 1604 | |
| 1605 | static std::string getIncompleteNameID(const Token* tok) |
| 1606 | { |
| 1607 | std::string result = tok->str() + "@"; |
| 1608 | while (Token::Match(tok->astParent(), ".|::")) |
| 1609 | tok = tok->astParent(); |
| 1610 | return result + tok->expressionString(); |
| 1611 | } |
| 1612 | |
| 1613 | namespace { |
| 1614 | int getExprIdForOperand(const Token* tok) { |
no test coverage detected