langtools/src/share/classes/com/sun/tools/javac/tree/TreeScanner.java
changeset 5492 515e4b33b335
parent 4877 b642d21c9f74
child 5520 86e4b9a9da40
equal deleted inserted replaced
5491:899e1748bb17 5492:515e4b33b335
   273     public void visitTypeApply(JCTypeApply tree) {
   273     public void visitTypeApply(JCTypeApply tree) {
   274         scan(tree.clazz);
   274         scan(tree.clazz);
   275         scan(tree.arguments);
   275         scan(tree.arguments);
   276     }
   276     }
   277 
   277 
       
   278     public void visitTypeDisjoint(JCTypeDisjoint tree) {
       
   279         scan(tree.components);
       
   280     }
       
   281 
   278     public void visitTypeParameter(JCTypeParameter tree) {
   282     public void visitTypeParameter(JCTypeParameter tree) {
   279         scan(tree.annotations);
   283         scan(tree.annotations);
   280         scan(tree.bounds);
   284         scan(tree.bounds);
   281     }
   285     }
   282 
   286