| 959 | } |
| 960 | |
| 961 | std::string Annotator::getVisibleRef(clang::NamedDecl* Decl) |
| 962 | { |
| 963 | if (getVisibility(Decl) != Visibility::Global) |
| 964 | return {}; |
| 965 | return getReferenceAndTitle(Decl).first; |
| 966 | } |
| 967 | |
| 968 | //return the classes to add in the span |
| 969 | std::string Annotator::computeClas(clang::NamedDecl* decl) |
no outgoing calls
no test coverage detected