From: Clement Courbet Date: Thu, 22 Nov 2018 10:44:36 +0000 (+0000) Subject: [ASTMatchers] Re-generate ast matchers doc after rL346455. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=922444780d20fc992120f80e0ec7c435f4b311a4;p=clang [ASTMatchers] Re-generate ast matchers doc after rL346455. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@347453 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html index 4ba2b62335..b547f7ece6 100644 --- a/docs/LibASTMatchersReference.html +++ b/docs/LibASTMatchersReference.html @@ -795,6 +795,17 @@ Example matches a ? b : c +Matcher<Stmt>constantExprMatcher<ConstantExpr>... +
Matches a constant expression wrapper.
+
+Example matches the constant in the case statement:
+    (matcher = constantExpr())
+  switch (a) {
+  case 37: break;
+  }
+
+ + Matcher<Stmt>continueStmtMatcher<ContinueStmt>...
Matches continue statements.