| 17 | } |
| 18 | |
| 19 | std::string Cursor::getDisplayName(void) const |
| 20 | { |
| 21 | std::string display_name; |
| 22 | |
| 23 | Utils::toString(clang_getCursorDisplayName(m_handle), display_name); |
| 24 | |
| 25 | return display_name; |
| 26 | } |
| 27 | |
| 28 | std::string Cursor::getSourceFile(void) const |
| 29 | { |
no test coverage detected