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

trait qualified-super expressions fail when inside closure

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 4.0.0-alpha-1, 3.0.6
    • None
    • None

    Description

      Consider the following:

      trait T {
        String string = 'value'
      }
      
      class implements T {
        void meth() {
          { ->
            T.super.setString('other')
            println T.super.getString()
          }()
        }
      }
      
      new C().meth()​
      

      The addition of a closure within the method causes a breakdown of the qualified-super method or property access. "MissingPropertyException: No such property: super for class: T"

      Attachments

        Activity

          People

            emilles Eric Milles
            emilles Eric Milles
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Time Tracking

                Estimated:
                Original Estimate - Not Specified
                Not Specified
                Remaining:
                Remaining Estimate - 0h
                0h
                Logged:
                Time Spent - 20m
                20m