8008685: DPrinter should include MethodType.recvtype

Reviewed-by: jjg
This commit is contained in:
Vicente Romero 2015-12-04 09:46:12 -08:00
parent fedd0005cd
commit 8ffd35ead4

View file

@ -1281,6 +1281,7 @@ public class DPrinter {
printList("argtypes", type.argtypes); printList("argtypes", type.argtypes);
printType("restype", type.restype, Details.FULL); printType("restype", type.restype, Details.FULL);
printList("thrown", type.thrown); printList("thrown", type.thrown);
printType("recvtype", type.recvtype, Details.FULL);
return visitType(type, null); return visitType(type, null);
} }