Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-09-26 | [libclang] Remove the ParentKind cursor kind from code-completion results. | Argyrios Kyrtzidis | |
This is to reduce dependency to cursors for the code-completion results. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164705 91177308-0d34-0410-b5e6-96231b3b80d8 | |||
2012-08-11 | Attaching comments to declarations: find comment attached to any redeclaration | Dmitri Gribenko | |
Not only look for the comment near the declaration itself, but also walk the redeclaration chain: the previous declaration might have had a documentation comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161722 91177308-0d34-0410-b5e6-96231b3b80d8 | |||
2012-07-02 | Add a new libclang completion API to get brief documentation comment that is | Dmitri Gribenko | |
attached to a declaration in the completion string. Since extracting comments isn't free, a new code completion option is introduced. A new code completion option that enables including brief comments into CodeCompletionString should be a, err, code completion option. But because ASTUnit caches global declarations during parsing before even completion consumer is created, the option is duplicated as a translation unit option (in both libclang and ASTUnit, like the option to cache code completion results). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159539 91177308-0d34-0410-b5e6-96231b3b80d8 |