From 314cfb539be771bc5b46b5f7a3afa24b214d8e41 Mon Sep 17 00:00:00 2001 From: Clement Courbet Date: Thu, 22 Nov 2018 10:44:36 +0000 Subject: [ASTMatchers] Re-generate ast matchers doc after rL346455. llvm-svn: 347453 --- clang/docs/LibASTMatchersReference.html | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'clang/docs/LibASTMatchersReference.html') diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html index 4ba2b623358..b547f7ece62 100644 --- a/clang/docs/LibASTMatchersReference.html +++ b/clang/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.
 
-- 
cgit v1.2.3