[PATCH] D51866: [analyzer][UninitializedObjectChecker][WIP] New flag to ignore guarded uninitialized fields
Artem Dergachev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 20 14:01:20 PDT 2018
NoQ added a comment.
You can retrieve any node from the `ASTMatcher` by `.bind()`ing sub-matchers to string keys and later retrieving them from the `MatchResult` dictionary by those keys. It's like a regex capturing groups (and, well, `ASTMatchers` also support backreferences to such groups, i.e. `equalsBoundNode()`).
Repository:
rC Clang
https://reviews.llvm.org/D51866
More information about the cfe-commits
mailing list