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
publicclassA {
intx = 5;
publicvoidfoo(intx) {
System.out.println(x); // Access to the parameter xSystem.out.println(this.x); // Access to the instance variable x
}
}
When asking for accesses of x with the method #fastAccesses on the famix entity that represents the parameter x of the foo method, it also returns the reference to the instance variable (this.x).
The result should not include the access to the instance variable.
The text was updated successfully, but these errors were encountered:
When asking for accesses of x with the method #fastAccesses on the famix entity that represents the parameter x of the foo method, it also returns the reference to the instance variable (this.x).
The result should not include the access to the instance variable.
The text was updated successfully, but these errors were encountered: