I would like to create a Structural Search for all method calls to methods that are annotated with a specific annotation.
For example, imagine wanting to find all method calls to methods marked @Deprecated.
I can start with this template:
$Instance$.$MethodCall$($Parameter$)
But then what do I do to the MethodCall variable?