-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More and improved Objective-C popup info (#430)
* Fix cindex's Cursor.result_type calling wrong libclang functions Should call clang_getCursorResultType() instead of clang_getResultType(). https://clang.llvm.org/doxygen/group__CINDEX__TYPES.html#ga6995a2d6352e7136868574b299005a63 * ObjC message expression declarations look more ObjC-ish Instead of "Foo* methodThatReturnsFoo", use that actual notation of message definitions with + or - for instance/class methods and parentheses, e.g. "-(Foo *)methodThatReturnsFoo". * Show ObjC popup info for category/protocol/interface method declarations Hovering over the declarations of methods, not just message expressions that invoke the methodss, will show popup info. * Show ObjC popup info for more types Popups for Protocol, Category, and Interface declarations, references, and implementations. Show type body (like is done for C++ class/struct) for these if possible. * Revert "Fix cindex's Cursor.result_type calling wrong libclang functions" This reverts commit 89d46e8. Also disable unittests that will now fail.
- Loading branch information
Showing
4 changed files
with
383 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.