I need to find self references in blocks (Objective C). And I'm using Clang AST Matchers for this.
The matcher to find all self references I've created is below:
declRefExpr(to(varDecl(hasName("self")))
Now I need to apply this matcher for blocks only. But I can't find how to do it. Does anyone have any ideas?
I've resolved the question by the following matcher (in OCLint):
Ultimately I resolved to find
BlockExpr
instead ofBlockDecl
. So, the rule above finds self references in all block expressions. But I didn't realize that in some blocksself
is valid. For example the block withindispatch_once
which executes a block object once and only once for the lifetime of an application.Therefore I think I need to find
BlockDecl
again :)