summaryrefslogtreecommitdiff
path: root/test/Index/complete-pointer-and-reference-to-functions.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Improves overload completion result chunks.Francisco Lopes da Silva2015-01-281-4/+4
| | | | | | | | | | | | | | | | | | | | | The code building the code completion string for overloads was providing less detail compared to the one building completion strings for function declarations. There was no information about optionals and no information about what's a parameter and what's a function identifier, everything besides ResultType, CurrentParameter and special characters was classified as Text. This makes code completion strings for overload candidates to follow a pattern very similar, but not identical, to the one in use for function declarations: - return type chunk: ResultType - function identifier chunk: Text - parameter chunks: Placeholder - optional parameter chunks: Optional - current parameter chunk: CurrentParameter git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@227309 91177308-0d34-0410-b5e6-96231b3b80d8
* Add tests for code completion of variadic prototypesFrancisco Lopes da Silva2015-01-231-2/+30
| | | | git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@226924 91177308-0d34-0410-b5e6-96231b3b80d8
* Sema: code completion for pointer and reference to functions.Francisco Lopes da Silva2015-01-221-0/+34
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@226865 91177308-0d34-0410-b5e6-96231b3b80d8