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
package p20;
import p8.GlobalExecutor;
public class ClassT2 extends ClassT1 {
public void fun(){
GlobalExecutor.executeByCommon(() -> {
fun2(classT3);
});
}
}
ClassT3.java
package p20;
public class ClassT3 {
final ClassT1 classT1;
public ClassT3(ClassT1 classT1) {
this.classT1 = classT1;
}
}
Actual output
unknownsourceposition
Expected output
existssourceposition
Spoon Version
<dependency>
<groupId>fr.inria.gforge.spoon</groupId>
<artifactId>spoon-core</artifactId>
<!-- See rendered release value at http://SpoonTest.gforge.inria.fr/ -->
<version>10.3.0</version>
</dependency>
JVM Version
11
What operating system are you using?
windows
The text was updated successfully, but these errors were encountered:
Describe the bug
1.In my code,the class
ClassT1
is exists,ClassT1.java
ClassT2.java
ClassT3.java
2.When i use the method
getAllTypes
to get the ctType,theClassT1
ctType show unknown source positionSource code you are trying to analyze/transform
Source code for your Spoon processing
ClassT1.java
ClassT2.java
ClassT3.java
Actual output
Expected output
Spoon Version
JVM Version
11
What operating system are you using?
windows
The text was updated successfully, but these errors were encountered: