Index: clang/docs/LibASTMatchersReference.html =================================================================== --- clang/docs/LibASTMatchersReference.html +++ clang/docs/LibASTMatchersReference.html @@ -2919,6 +2919,12 @@ +
Determines whether the function is "main", which is the entry point +into an executable program. +
Matches FunctionDecls that have a noreturn attribute. @@ -3275,9 +3281,9 @@ matcher = objcMessagaeExpr(isInstanceMessage()) matches NSString *x = @"hello"; - [x containsString:@"h"] + [x containsString:@"h"]; but not - [NSString stringWithFormat:@"format"] + [NSString stringWithFormat:@"format"];