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
The API isStatic() under CtExecutableReference does not return the staticness. Under Spoon 5.2.0.
Not sure whether this is a dropped feature or a bug.
The input source code
package temp;
public class A {
public static int getInt1() { return 1; }
public final static int getInt2() { return 2; }
public final int getInt3() { return 3; }
public int getInt4() { return 4; }
}
The API
isStatic()
underCtExecutableReference
does not return the staticness. Under Spoon 5.2.0.Not sure whether this is a dropped feature or a bug.
The input source code
The Spoon processor
Output is as follows. Then
isStatic()
does not return true forgetInt1()
andgetInt2()
The text was updated successfully, but these errors were encountered: