langtools/src/share/classes/com/sun/tools/javac/comp/MemberEnter.java
changeset 4877 b642d21c9f74
parent 3542 3fdb9f291a7e
child 5520 86e4b9a9da40
child 5736 ee0850472ca1
equal deleted inserted replaced
4876:321ed2a5afcf 4877:b642d21c9f74
  1061         public void visitNewArray(final JCNewArray tree) {
  1061         public void visitNewArray(final JCNewArray tree) {
  1062             annotate(tree, tree.annotations);
  1062             annotate(tree, tree.annotations);
  1063             for (List<JCTypeAnnotation> dimAnnos : tree.dimAnnotations)
  1063             for (List<JCTypeAnnotation> dimAnnos : tree.dimAnnotations)
  1064                 annotate(tree, dimAnnos);
  1064                 annotate(tree, dimAnnos);
  1065             super.visitNewArray(tree);
  1065             super.visitNewArray(tree);
  1066         }
       
  1067         @Override
       
  1068         public void visitApply(JCMethodInvocation tree) {
       
  1069             super.visitApply(tree);
       
  1070             scan(tree.typeargs);
       
  1071         }
  1066         }
  1072         @Override
  1067         @Override
  1073         public void visitMethodDef(JCMethodDecl tree) {
  1068         public void visitMethodDef(JCMethodDecl tree) {
  1074             annotate(tree, tree.receiverAnnotations);
  1069             annotate(tree, tree.receiverAnnotations);
  1075             super.visitMethodDef(tree);
  1070             super.visitMethodDef(tree);