Mutual recursion
Author: LGTM
import csharp
from Method m, Method n
where
m.calls(n) and
n.calls(m) and
m != n
select m, nDescription
Finds pairs of methods that call each other.
import csharp
from Method m, Method n
where
m.calls(n) and
n.calls(m) and
m != n
select m, nFinds pairs of methods that call each other.