Add code completion for using alias.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Event Timeline
mostly LG, apart from the comments around the fallthrough, thanks!
clang/lib/Sema/SemaCodeComplete.cpp | ||
---|---|---|
1820 | let's take in the CodeCompletionBuilder& too instead of creating a new one. | |
2060 | there's already a fallthrough down below, please drop this one. | |
2090 | let's put this right after using declaration. (this at least needs to be outside this if statement to be triggered by fallthrough) |
LGTM, thanks!
Will land this one too. In the meantime feel free to apply for commit access, as explained in https://llvm.org/docs/DeveloperPolicy.html#obtaining-commit-access (IIRC, you already have a couple patches, if not you can also point at these after I land)
let's take in the CodeCompletionBuilder& too instead of creating a new one.