Open
Description
Given the following code
@implementation NSDateFormatter (MyInterface)
…
@end
and a CXCursor
pointing to it of kind CXCursor_ObjCCategoryImplDecl
: How can I get the name of the interface being extended here? clang_getCursorDisplayName
only gives me the category name, but I also need the original name.