Maurizio found NPE in TreeInfo.declarationFor; more specifically, the NPE seems to be coming for the new visitor method that has been recently added:
public void visitTypeParameter(JCTypeParameter that) {
if (that.type.tsym == sym) result = that; //NPE here
else super.visitTypeParameter(that);
}
He suspects the problem is caused by the fact that 'that.type' is null.
public void visitTypeParameter(JCTypeParameter that) {
if (that.type.tsym == sym) result = that; //NPE here
else super.visitTypeParameter(that);
}
He suspects the problem is caused by the fact that 'that.type' is null.
- duplicates
-
JDK-7000747 Building Glassfish with JDK7 b112 gets an NPE from javac during annotation processing
-
- Closed
-
-
JDK-6990209 JCK7-compiler lang/ICLS/icls006/icls00603/icls00603a.html#icls00603src test fails.
-
- Closed
-