We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Java 7 visitor currently does not process and store enum constant declarations.
Relevant code:
compiler/src/java/boa/datagen/util/Java7Visitor.java
Line 261 in 4c81e20
See: https://help.eclipse.org/neon/index.jsp?topic=%2Forg.eclipse.jdt.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fjdt%2Fcore%2Fdom%2FEnumConstantDeclaration.html
The text was updated successfully, but these errors were encountered:
We could generate a new Declaration for each one. That would allow storing the name and modifiers. We would need a new TypeKind for it.
The anon class (if it exists) could also be stored as a nested declaration.
The only part we couldn't store with this strategy is the arguments (list of Expression).
Sorry, something went wrong.
Branch "jlf-j16" fixed this issue. And "Java7Visitor.java" is renamed to "JavaVisitor.java"
No branches or pull requests
The Java 7 visitor currently does not process and store enum constant declarations.
Relevant code:
compiler/src/java/boa/datagen/util/Java7Visitor.java
Line 261 in 4c81e20
See: https://help.eclipse.org/neon/index.jsp?topic=%2Forg.eclipse.jdt.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fjdt%2Fcore%2Fdom%2FEnumConstantDeclaration.html
The text was updated successfully, but these errors were encountered: