[PATCH] D72534: Change default traversal in AST Matchers to ignore invisible nodes
Stephen Kelly via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu May 21 15:43:51 PDT 2020
steveire updated this revision to Diff 265626.
steveire added a comment.
Touch
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D72534/new/
https://reviews.llvm.org/D72534
Files:
clang/docs/ReleaseNotes.rst
clang/include/clang/AST/ParentMapContext.h
Index: clang/include/clang/AST/ParentMapContext.h
===================================================================
--- clang/include/clang/AST/ParentMapContext.h
+++ clang/include/clang/AST/ParentMapContext.h
@@ -67,7 +67,7 @@
private:
ASTContext &ASTCtx;
class ParentMap;
- TraversalKind Traversal = TK_AsIs;
+ TraversalKind Traversal = TK_IgnoreUnlessSpelledInSource;
std::unique_ptr<ParentMap> Parents;
};
Index: clang/docs/ReleaseNotes.rst
===================================================================
--- clang/docs/ReleaseNotes.rst
+++ clang/docs/ReleaseNotes.rst
@@ -246,7 +246,14 @@
AST Matchers
------------
-- ...
+- Traversal in AST Matchers was simplified to use the
+ ``TK_IgnoreUnlessSpelledInSource`` mode by default, instead of ``TK_AsIs``.
+ This means that many uses of the ``ignoringImplicit()`` and similar matchers
+ is no longer necessary. Clients of AST Matchers which wish to match on
+ implicit AST nodes can wrap their matcher in ``traverse(TK_AsIs, ...)`` or
+ use ``TraversalKindScope`` if appropriate. The ``clang-query`` tool also
+ uses ``IgnoreUnlessSpelledInSource`` by default. The mode can be changed
+ using ``set traversal AsIs`` in the ``clang-query`` environment.
clang-format
------------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D72534.265626.patch
Type: text/x-patch
Size: 1271 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200521/1dac95cd/attachment.bin>
More information about the cfe-commits
mailing list