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 Inria CI for project Juliac bumped into an issue 2 days ago. By figuring out what is going out, the issue can be trimmed down to the following simple case.
To Reproduce
Input:
classC { Class<?>[] foo; }
Processing with Spoon:
System.out.println( Launcher.parseClass("class C { Class<?>[] foo; }") );
Output:
classC {
Class<?> foo;
}
Note that the issue does not arise with array of raw types, e.g. Class[] is correctly pretty-printed.
Operating system, JDK and Spoon version used
OS: macOS
JDK: 13
Spoon version: latest from github
The text was updated successfully, but these errors were encountered:
Hi! Thanks for the bug report. I am able to reproduce the issue. I worked on it a few days ago. See #4341. I may have missed the case for parametrizedTypeReferences. I can work on a fix for this one.
Dear all,
The Inria CI for project Juliac bumped into an issue 2 days ago. By figuring out what is going out, the issue can be trimmed down to the following simple case.
To Reproduce
Input:
Processing with Spoon:
Output:
Note that the issue does not arise with array of raw types, e.g. Class[] is correctly pretty-printed.
Operating system, JDK and Spoon version used
The text was updated successfully, but these errors were encountered: