r328086 - [ASTMatchers] Regenerate doc.
Clement Courbet via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 21 03:48:00 PDT 2018
Author: courbet
Date: Wed Mar 21 03:48:00 2018
New Revision: 328086
URL: http://llvm.org/viewvc/llvm-project?rev=328086&view=rev
Log:
[ASTMatchers] Regenerate doc.
Modified:
cfe/trunk/docs/LibASTMatchersReference.html
Modified: cfe/trunk/docs/LibASTMatchersReference.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/LibASTMatchersReference.html?rev=328086&r1=328085&r2=328086&view=diff
==============================================================================
--- cfe/trunk/docs/LibASTMatchersReference.html (original)
+++ cfe/trunk/docs/LibASTMatchersReference.html Wed Mar 21 03:48:00 2018
@@ -4353,7 +4353,7 @@ with hasAnyArgument(...)
For ObjectiveC, given
@interface I - (void) f:(int) y; @end
- void foo(I *i) { [i f:12] }
+ void foo(I *i) { [i f:12]; }
objcMessageExpr(hasAnyArgument(integerLiteral(equals(12))))
matches [i f:12]
</pre></td></tr>
@@ -4706,7 +4706,7 @@ with hasAnyArgument(...)
For ObjectiveC, given
@interface I - (void) f:(int) y; @end
- void foo(I *i) { [i f:12] }
+ void foo(I *i) { [i f:12]; }
objcMessageExpr(hasAnyArgument(integerLiteral(equals(12))))
matches [i f:12]
</pre></td></tr>
@@ -5659,7 +5659,7 @@ with hasAnyArgument(...)
For ObjectiveC, given
@interface I - (void) f:(int) y; @end
- void foo(I *i) { [i f:12] }
+ void foo(I *i) { [i f:12]; }
objcMessageExpr(hasAnyArgument(integerLiteral(equals(12))))
matches [i f:12]
</pre></td></tr>
More information about the cfe-commits
mailing list