com.sun.tools.javac.tree.TreeScanner visitNewClass omits to scan tree.typeargs, but should.
public void visitNewClass(JCNewClass tree) {
scan(tree.encl);
scan(tree.clazz);
scan(tree.args);
scan(tree.def);
}
public void visitNewClass(JCNewClass tree) {
scan(tree.encl);
scan(tree.clazz);
scan(tree.args);
scan(tree.def);
}
- relates to
-
JDK-6983239 TreeScanner does not scan default value for method
-
- Closed
-