Results 2 issues of CJun

![image](https://user-images.githubusercontent.com/15818895/181412463-eb573884-cc4c-479a-a525-0ea45df5a85e.png) 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...

Bug report
Grammar

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 :...