r337760 - [ASTMatchers] [NFC] Regenerate HTML docs.
George Karpenkov via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 23 15:29:11 PDT 2018
Author: george.karpenkov
Date: Mon Jul 23 15:29:10 2018
New Revision: 337760
URL: http://llvm.org/viewvc/llvm-project?rev=337760&view=rev
Log:
[ASTMatchers] [NFC] Regenerate HTML docs.
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=337760&r1=337759&r2=337760&view=diff
==============================================================================
--- cfe/trunk/docs/LibASTMatchersReference.html (original)
+++ cfe/trunk/docs/LibASTMatchersReference.html Mon Jul 23 15:29:10 2018
@@ -3275,9 +3275,9 @@ Example
matcher = objcMessagaeExpr(isInstanceMessage())
matches
NSString *x = @"hello";
- [x containsString:@"h"]
+ [x containsString:@"h"];
but not
- [NSString stringWithFormat:@"format"]
+ [NSString stringWithFormat:@"format"];
</pre></td></tr>
@@ -5894,7 +5894,7 @@ and the inner matcher matches on that in
For example the method call in
NSString *x = @"hello";
- [x containsString:@"h"]
+ [x containsString:@"h"];
is matched by
objcMessageExpr(hasReceiver(declRefExpr(to(varDecl(hasName("x"))))))
</pre></td></tr>
@@ -6564,7 +6564,7 @@ type of the matched node.
For example, in:
class A {};
using B = A;
-The matcher type(hasUnqualifeidDesugaredType(recordType())) matches
+The matcher type(hasUnqualifiedDesugaredType(recordType())) matches
both B and A.
</pre></td></tr>
More information about the cfe-commits
mailing list