aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Courbet <courbet@google.com>2018-11-22 02:50:52 -0800
committerandroid-build-merger <android-build-merger@google.com>2018-11-22 02:50:52 -0800
commitb241bdee0c0eb0f8df3f373962929e31d89cc1ae (patch)
tree4ddbb15b2f683458d52e0b42928768be5e3aabe3
parentcea25f469a18cff6bd8d5e09324b7bb4bb07e29f (diff)
parent922444780d20fc992120f80e0ec7c435f4b311a4 (diff)
downloadclang-b241bdee0c0eb0f8df3f373962929e31d89cc1ae.tar.gz
[ASTMatchers] Re-generate ast matchers doc after rL346455.
am: 922444780d Change-Id: If4434a2709b0353d60e29d6f93137ce256c61527
-rw-r--r--docs/LibASTMatchersReference.html11
1 files changed, 11 insertions, 0 deletions
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
</pre></td></tr>
+<tr><td>Matcher&lt;<a href="https://clang.llvm.org/doxygen/classclang_1_1Stmt.html">Stmt</a>&gt;</td><td class="name" onclick="toggle('constantExpr0')"><a name="constantExpr0Anchor">constantExpr</a></td><td>Matcher&lt;<a href="https://clang.llvm.org/doxygen/classclang_1_1ConstantExpr.html">ConstantExpr</a>&gt;...</td></tr>
+<tr><td colspan="4" class="doc" id="constantExpr0"><pre>Matches a constant expression wrapper.
+
+Example matches the constant in the case statement:
+ (matcher = constantExpr())
+ switch (a) {
+ case 37: break;
+ }
+</pre></td></tr>
+
+
<tr><td>Matcher&lt;<a href="https://clang.llvm.org/doxygen/classclang_1_1Stmt.html">Stmt</a>&gt;</td><td class="name" onclick="toggle('continueStmt0')"><a name="continueStmt0Anchor">continueStmt</a></td><td>Matcher&lt;<a href="https://clang.llvm.org/doxygen/classclang_1_1ContinueStmt.html">ContinueStmt</a>&gt;...</td></tr>
<tr><td colspan="4" class="doc" id="continueStmt0"><pre>Matches continue statements.