CJun
CJun
 definition interface value array use below code to format:(the content of a is above code) ``` CompilationUnit cu = StaticJavaParser.parse(file); System.out.println(cu); ``` Problem stacktrace : ``` com.github.javaparser.ParseProblemException: (line 4,col...
I am using the following for Java code parsing: https://github.com/antlr/grammars-v4/blob/master/java/java/JavaParser.g4 The code related to altAnnotationQualifiedName is as follows: ``` // ANNOTATIONS altAnnotationQualifiedName : (identifier DOT)* '@' identifier ; annotation :...