| 216 | } |
| 217 | |
| 218 | static char normalizeForfnIndex(char c) { |
| 219 | if (c >= 'A' && c <= 'Z') |
| 220 | c = c - 'A' + 'a'; |
| 221 | if (c < 'a' || c > 'z') |
| 222 | return '_'; |
| 223 | return c; |
| 224 | } |
| 225 | |
| 226 | void Annotator::registerInterestingDefinition(clang::SourceRange sourceRange, clang::NamedDecl *decl) { |
| 227 | std::string declName = decl->getQualifiedNameAsString(); |