You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stereocode builds a signature map of all methods in a class (including inherited methods) that can be used to filter calls. Currently, the tool does not differentiate between overloaded methods. For example, the following two methods:
voidfoo(int x, int y)
void foo(double x, double y)
Will have the same signature. That is: foo(,)
Ideally, it should form two different signatures, but it could be tricky, especially for matching calls within a method.
The text was updated successfully, but these errors were encountered:
Stereocode builds a signature map of all methods in a class (including inherited methods) that can be used to filter calls. Currently, the tool does not differentiate between overloaded methods. For example, the following two methods:
Will have the same signature. That is:
foo(,)
Ideally, it should form two different signatures, but it could be tricky, especially for matching calls within a method.
The text was updated successfully, but these errors were encountered: