8013852: update reference impl for type-annotations

Co-authored-by: Steve Sides <steve.sides@oracle.com>
Co-authored-by: Joel Borggren-Franck <joel.franck@oracle.com>
Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Reviewed-by: jjg
This commit is contained in:
Werner Dietl 2013-05-14 15:04:06 -07:00 committed by Jonathan Gibbons
parent ac02470255
commit 54582cab82
103 changed files with 4087 additions and 999 deletions

View file

@ -469,6 +469,7 @@ public class DPrinter {
indent(+1);
printSymbol("tsym", type.tsym, Details.SUMMARY);
printObject("constValue", type.constValue(), Details.SUMMARY);
printObject("annotations", type.getAnnotationMirrors(), Details.SUMMARY);
type.accept(typeVisitor, null);
indent(-1);
}