ΒΆtemplate <typename T, typename InnerT>
BindableMatcher<T> makeDynCastAllOfComposite(
    ArrayRef<const Matcher<InnerT>*>
        InnerMatchers)

Description

Creates a Matcher <T > that matches if T is dyn_cast'able into InnerT and all inner matchers match. Returns BindableMatcher, as matchers that use dyn_cast have the same object both to match on and to run submatchers on, so there is no ambiguity with what gets bound.

Declared at: clang/include/clang/ASTMatchers/ASTMatchersInternal.h:1299

Templates

T
InnerT

Parameters

ArrayRef<const Matcher<InnerT>*> InnerMatchers