File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3275,9 +3275,9 @@ <h2 id="narrowing-matchers">Narrowing Matchers</h2>
3275
3275
matcher = objcMessagaeExpr(isInstanceMessage())
3276
3276
matches
3277
3277
NSString *x = @"hello";
3278
- [x containsString:@"h"]
3278
+ [x containsString:@"h"];
3279
3279
but not
3280
- [NSString stringWithFormat:@"format"]
3280
+ [NSString stringWithFormat:@"format"];
3281
3281
</ pre > </ td > </ tr >
3282
3282
3283
3283
@@ -5894,7 +5894,7 @@ <h2 id="traversal-matchers">AST Traversal Matchers</h2>
5894
5894
5895
5895
For example the method call in
5896
5896
NSString *x = @"hello";
5897
- [x containsString:@"h"]
5897
+ [x containsString:@"h"];
5898
5898
is matched by
5899
5899
objcMessageExpr(hasReceiver(declRefExpr(to(varDecl(hasName("x"))))))
5900
5900
</ pre > </ td > </ tr >
@@ -6564,7 +6564,7 @@ <h2 id="traversal-matchers">AST Traversal Matchers</h2>
6564
6564
For example, in:
6565
6565
class A {};
6566
6566
using B = A;
6567
- The matcher type(hasUnqualifeidDesugaredType (recordType())) matches
6567
+ The matcher type(hasUnqualifiedDesugaredType (recordType())) matches
6568
6568
both B and A.
6569
6569
</ pre > </ td > </ tr >
6570
6570
You can’t perform that action at this time.
0 commit comments