Reputation: 460
Imagine I want to search for all the methods with any number of parameters that accepts as one of them Collection but are called by passing a List. Example:
and I have:
Is there a way of using Structural search for that?
Upvotes: 4
Views: 730
Reputation: 26462
If you want to find the calls to the methods, not the methods itself, you can use the following search template:
$call$($a$, $argument$, $b$)
With the following variable constraints:
Upvotes: 1