Index: cfe/trunk/docs/LibASTMatchersReference.html =================================================================== --- cfe/trunk/docs/LibASTMatchersReference.html +++ cfe/trunk/docs/LibASTMatchersReference.html @@ -3616,30 +3616,6 @@ -
Returns true when the Objective-C method declaration is a class method. - -Example -matcher = objcMethodDecl(isClassMethod()) -matches - @interface I + (void)foo; @end -but not - @interface I - (void)bar; @end -
Returns true when the Objective-C method declaration is an instance method. - -Example -matcher = objcMethodDecl(isInstanceMethod()) -matches - @interface I - (void)bar; @end -but not - @interface I + (void)foo; @end -
Matches ObjC selectors whose name contains a substring matched by the given RegExp. @@ -3662,6 +3638,18 @@
Returns true when the Objective-C method declaration is a class method. + +Example +matcher = objcMethodDecl(isClassMethod()) +matches +@interface I + (void)foo; @end +but not +@interface I - (void)bar; @end +
Matches if a declaration has a body attached. @@ -3684,6 +3672,18 @@
Returns true when the Objective-C method declaration is an instance method. + +Example +matcher = objcMethodDecl(isInstanceMethod()) +matches +@interface I - (void)bar; @end +but not +@interface I + (void)foo; @end +
Matches a declaration that has default arguments.