[PATCH] D53635: [CodeComplete] Expose InBaseClass signal in code completion results.
Eric Liu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 24 05:45:43 PDT 2018
ioeric added inline comments.
================
Comment at: lib/Sema/CodeCompleteConsumer.cpp:557
+ if (!Tags.empty())
+ OS << " (" << llvm::join(Tags, ",") << ")";
+ if (CodeCompletionString *CCS = Results[I].CreateCodeCompletionString(
----------------
ilya-biryukov wrote:
> NIT: Maybe add a space between the items, i.e. join with `", "` as a separator?
Considering we put everything in one line, I think it's reasonable to drop the spaces to keep the output compact. These tags are more expected to be read by tests than human after all.
Repository:
rC Clang
https://reviews.llvm.org/D53635
More information about the cfe-commits
mailing list