langtools/src/share/classes/com/sun/tools/javac/tree/TreeScanner.java
changeset 4877 b642d21c9f74
parent 3149 0cd06d598d6f
child 5492 515e4b33b335
equal deleted inserted replaced
4876:321ed2a5afcf 4877:b642d21c9f74
   191         scan(tree.cond);
   191         scan(tree.cond);
   192         scan(tree.detail);
   192         scan(tree.detail);
   193     }
   193     }
   194 
   194 
   195     public void visitApply(JCMethodInvocation tree) {
   195     public void visitApply(JCMethodInvocation tree) {
       
   196         scan(tree.typeargs);
   196         scan(tree.meth);
   197         scan(tree.meth);
   197         scan(tree.args);
   198         scan(tree.args);
   198     }
   199     }
   199 
   200 
   200     public void visitNewClass(JCNewClass tree) {
   201     public void visitNewClass(JCNewClass tree) {
   201         scan(tree.encl);
   202         scan(tree.encl);
   202         scan(tree.clazz);
   203         scan(tree.clazz);
       
   204         scan(tree.typeargs);
   203         scan(tree.args);
   205         scan(tree.args);
   204         scan(tree.def);
   206         scan(tree.def);
   205     }
   207     }
   206 
   208 
   207     public void visitNewArray(JCNewArray tree) {
   209     public void visitNewArray(JCNewArray tree) {