Previously, the matcher matches a function call/ref multiple times, one
for each decl ancestor. This might cause problems. For example, in the following
case, func() would be matched once (with namespace context) before using decl is
seen and once after using decl is seeing, which would result in different conflicting
replacements as the first match would replace func with "ns::func" as it doesn't
know about the using decl.
namespace x { namespace { using ::ns::func; void f() { func(); } } }
Switching from hasDescendant matching to hasAncestor matching solves the
problem.