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
new VoidVisitorAdapter<Object>() { @Override public void visit(ClassOrInterfaceDeclaration n, Object arg) { super.visit(n, arg); System.out.println(" * " + n.getName()); } }.visit(StaticJavaParser.parse(BFile_sourcePath), null);
package test; public class B { public void print() { new BInternal(){}.test(); } } class BInternal { void test() { } }
only print
* B * BInternal
need print
* B$1
also
The text was updated successfully, but these errors were encountered:
Thank you for reporting this
Sorry, something went wrong.
No branches or pull requests
only print
need print
also
The text was updated successfully, but these errors were encountered: