Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance method signature matching #61

Open
aalramadan opened this issue Jun 21, 2024 · 0 comments
Open

Enhance method signature matching #61

aalramadan opened this issue Jun 21, 2024 · 0 comments

Comments

@aalramadan
Copy link
Member

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:

void foo(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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant