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

changeset 969
8cc5b440fdde
parent 816
7c537f4298fb
child 1142
c896d95e7469
equal deleted inserted replaced
960:26b065bb4ee7 969:8cc5b440fdde
270 public void visitTypeApply(JCTypeApply tree) { 270 public void visitTypeApply(JCTypeApply tree) {
271 scan(tree.clazz); 271 scan(tree.clazz);
272 scan(tree.arguments); 272 scan(tree.arguments);
273 } 273 }
274 274
275 public void visitTypeDisjunction(JCTypeDisjunction tree) { 275 public void visitTypeUnion(JCTypeUnion tree) {
276 scan(tree.alternatives); 276 scan(tree.alternatives);
277 } 277 }
278 278
279 public void visitTypeParameter(JCTypeParameter tree) { 279 public void visitTypeParameter(JCTypeParameter tree) {
280 scan(tree.bounds); 280 scan(tree.bounds);

mercurial