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

[PATCH] AstBuilderFromSpecificationTest.testFieldExpression sets an incorrect modifier to FieldNode

    XMLWordPrintableJSON

Details

    • Test
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 1.9-beta-4, 1.8.4
    • ast builder
    • None
    • 1.9.0-beta-4-SNAPSHOT
    • Patch

    Description

      The code try to set the modifier to "public static" but

      ACC_PUBLIC & ACC_STATIC

      means NOTHING:

          public void testFieldExpression() {
              // public static String foo = "a value"
              def result = new AstBuilder().buildFromSpec {
                  field {
                      fieldNode "foo", ACC_PUBLIC & ACC_STATIC, String, this.class, {
                          constant "a value"
                      }
                  }
              }
      

      Attachments

        1. testFieldExpression.patch
          1 kB
          Masato Nagai

        Activity

          People

            guillaume Guillaume Sauthier
            nagai_masato Masato Nagai
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: