langtools/test/tools/javac/lib/DPrinter.java
changeset 15705 c4124695db0c
parent 15561 ef818953c598
child 17578 46ac954e4a84
equal deleted inserted replaced
15704:02afd052face 15705:c4124695db0c
  1004         }
  1004         }
  1005 
  1005 
  1006         public Void visitUndetVar(UndetVar type, Void ignore) {
  1006         public Void visitUndetVar(UndetVar type, Void ignore) {
  1007             for (UndetVar.InferenceBound ib: UndetVar.InferenceBound.values())
  1007             for (UndetVar.InferenceBound ib: UndetVar.InferenceBound.values())
  1008                 printList("bounds." + ib, type.getBounds(ib));
  1008                 printList("bounds." + ib, type.getBounds(ib));
       
  1009             printInt("declaredCount", type.declaredCount);
  1009             printType("inst", type.inst, Details.SUMMARY);
  1010             printType("inst", type.inst, Details.SUMMARY);
  1010             return visitDelegatedType(type);
  1011             return visitDelegatedType(type);
  1011         }
  1012         }
  1012 
  1013 
  1013         public Void visitWildcardType(WildcardType type, Void ignore) {
  1014         public Void visitWildcardType(WildcardType type, Void ignore) {