Key methods by Class-MethodName-ArgTypes rather than just Class-MethodName, to avoid issues with ambiguity between calls to overloaded methods with the same number of arguments.
E.g. If I have doStuff(Integer x) and doStuff(String y), calling doStuff((String)null) would show up as a method call for both methods.
This also lays the groundwork for matcher support.
Key methods by Class-MethodName-ArgTypes rather than just Class-MethodName, to avoid issues with ambiguity between calls to overloaded methods with the same number of arguments.
E.g. If I have doStuff(Integer x) and doStuff(String y), calling doStuff((String)null) would show up as a method call for both methods.
This also lays the groundwork for matcher support.