From: George Karpenkov Date: Mon, 23 Jul 2018 22:29:10 +0000 (+0000) Subject: [ASTMatchers] [NFC] Regenerate HTML docs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3787b2b6af82e095ea3d2123db225566abf957d0;p=clang [ASTMatchers] [NFC] Regenerate HTML docs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337760 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html index a41424d89a..3a32c6ca6c 100644 --- a/docs/LibASTMatchersReference.html +++ b/docs/LibASTMatchersReference.html @@ -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"]; @@ -5894,7 +5894,7 @@ and the inner matcher matches on that instance. 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")))))) @@ -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.