The list of matchers which can be used with a top matcher can be used in
other contexts than code completion. It can be output as data in
clang-tidy.
Details
- Reviewers
aaron.ballman
Diff Detail
- Repository
- rC Clang
- Build Status
Buildable 24912 Build 24911: arc lint + arc unit
Event Timeline
Generally LGTM but this has no test coverage. What are your plans for how you want to see this proceed? Do you intend to commit everything in one batch once all of the reviews are accepted, or do piecemeal commits?
lib/ASTMatchers/Dynamic/Registry.cpp | ||
---|---|---|
565 | I'd prefer T to be named Callable and func to be Func. Also, I think it should be Callable &&Func. | |
595–637 | Then you can use std::forward<Callable>(Func)(...); because we can't use std::invoke() yet. |
I think this commit is fine without tests. The new method remains internal to the file but follow-up commits add public interface and tests.
I'll push the commits separately. I'll not be squashing them.
That's not something we do except under specific extenuating circumstances (NFC fixes or changes for which existing coverage suffices), per our developer policy.
The new method remains internal to the file but follow-up commits add public interface and tests.
I'll push the commits separately. I'll not be squashing them.
I'd prefer to squash them at least into commits that have tests for the functionality. More specifically: if the functionality is testable, it needs tests when it's committed. If it's not testable, squash it into the most closely-related commit that is testable. In terms of review cycles, I'm fine with "this functionality will be commit with that functionality, whose tests cover this.", though I'd personally prefer future reviews to come pre-squashed to cut down on confusion.
This is just a NFC change, which is normal to appear without tests. The consensus on IRC is that this is fine.
This NFC would likely be rejected were it not for your other patches because it would serve no purpose while adding complexity and overhead. I'm not certain why you feel so strongly about not merging this with other patches. We ask developers to do that for new features because it makes it trivial for us to know what to revert when a random bot goes red. That said, if you continue to feel strongly about this, I'll hold my nose.
LGTM with some formatting nits.
lib/ASTMatchers/Dynamic/Registry.cpp | ||
---|---|---|
565 | 80 col. | |
594–595 | 80 col and elide braces. |
I'd prefer T to be named Callable and func to be Func. Also, I think it should be Callable &&Func.