-
Notifications
You must be signed in to change notification settings - Fork 13
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
Soot Setup for Source Sink Confluence Analysis #3
Comments
OK, good to know @LSinzker. As an example/test-case, it would be better to insert a separator (line) between //left and //right because without such separator we would have a merge conflict, so this case would not even reach our soot tool. |
Thanks! Fixed. |
pauloborba
pushed a commit
that referenced
this issue
Nov 30, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the current setup Soot optimizes the code before running the analysis, this way it ends up erasing variable references that have a constant attributed to them, preventing conflict detection by the analyzer if such attribution happens to be a line of interest, such as a Source or Sink (or left, right).
A case such as this:
public void foo(){
int x = 1;
int y = 2;
}
Should yield a conflict, however, it doesn't.
The text was updated successfully, but these errors were encountered: