We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 509b6bd commit f88fb96Copy full SHA for f88fb96
clang/docs/LibASTMatchersReference.html
@@ -7239,9 +7239,9 @@ <h2 id="traversal-matchers">AST Traversal Matchers</h2>
7239
void z(Y y, X x) { y.m(); x.m(); x.g(); (g()).m(); }
7240
cxxMemberCallExpr(onImplicitObjectArgument(hasType(
7241
cxxRecordDecl(hasName("Y")))))
7242
- matches `y.m()`, `x.m()` and (g()).m(), but not `x.g()`.
+ matches `y.m()`, `x.m()` and (`g()).m()`, but not `x.g()`).
7243
cxxMemberCallExpr(on(callExpr()))
7244
- does not match `(g()).m()`, because the parens are not ignored.
+ only matches `(g()).m()` (the parens are ignored).
7245
7246
FIXME: Overload to allow directly matching types?
7247
</pre></td></tr>
0 commit comments