src/share/classes/com/sun/tools/javac/tree/Pretty.java

changeset 1436
f6f1fd261f57
parent 1415
01c9d4161882
child 1486
7d2f628f04f1
     1.1 --- a/src/share/classes/com/sun/tools/javac/tree/Pretty.java	Fri Nov 30 15:14:36 2012 +0000
     1.2 +++ b/src/share/classes/com/sun/tools/javac/tree/Pretty.java	Fri Nov 30 15:14:48 2012 +0000
     1.3 @@ -1249,6 +1249,14 @@
     1.4          }
     1.5      }
     1.6  
     1.7 +    public void visitTypeIntersection(JCTypeIntersection tree) {
     1.8 +        try {
     1.9 +            printExprs(tree.bounds, " & ");
    1.10 +        } catch (IOException e) {
    1.11 +            throw new UncheckedIOException(e);
    1.12 +        }
    1.13 +    }
    1.14 +
    1.15      public void visitTypeParameter(JCTypeParameter tree) {
    1.16          try {
    1.17              print(tree.name);

mercurial