| 68 | enum TokenType { Ref, Member, Type, Decl, Call, Namespace, Typedef, Enum, EnumDecl, Label }; |
| 69 | private: |
| 70 | enum class Visibility { |
| 71 | Local, // Local to a Function |
| 72 | Static, // If it is only visible to this file |
| 73 | Global // Globaly visible. |
| 74 | }; |
| 75 | |
| 76 | Visibility getVisibility(const clang::NamedDecl *); |
| 77 |
nothing calls this directly
no outgoing calls
no test coverage detected