Uploaded image for project: 'Groovy'
  1. Groovy
  2. GROOVY-9399

Annotations on annotation methods are missing in the AST

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 3.0.0
    • 4.0.0-alpha-1, 3.0.2
    • ast builder
    • None

    Description

      In Groovy 2.5, the annotation would be found, in Groovy 3 it is not.

       

       Simple example:

       

      import org.codehaus.groovy.ast.builder.AstBuilder
      import org.codehaus.groovy.ast.*

      ASTNode[] nodes = new AstBuilder().buildFromString('''
      @interface Foo {
          String value() default ""
      }

      @interface Bar {

          @Foo
          String value()
      }
      ''')

       

      nodes[2].methods[0].getAnnotations()

      Attachments

        Activity

          People

            daniel_sun Daniel Sun
            Schlogen James Kleeh
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: