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

CompileStatic: Improved method call/property access Java compatibility for Minecraft Forge obfuscation support

    XMLWordPrintableJSON

Details

    Description

      • Even with @CompileStatic the Groovy compiler creates bytecode for method calls / property access which is dynamic in nature.
      • This means that e.g. Minecraft Forge's obfuscator does not pick up the calls in the generated bytecode, which means they do not get obfuscated, which in turn makes the code fail when executed in Minecraft.
      • This effectively makes it nearly impossible to write Minecraft mods with Groovy, which in turn is a wasted opportunity to get people involved with Groovy early on.
      • Possible approaches to improve the situation:
        1. Improve on a fundamental level: According to paulk only a few calls are required to be done dynamically for Groovy functionality to work as expected under @CompileStatic.
          • The problem seems to be that it could be hard to be a 100% sure no edge case is overlooked, as to not break @CompileStatic in situations where e.g. no 100% Java-call-compatibility is needed.
        2. Improve through newly introduced @CompileStatic parameters
          • => Static method call / property access bytecode is generated for method code / all class methods repectively (with possible exceptions for the know cases mentioned above).
        3. Improve through newly introduced @ObfuscationJavaCompatibility annotation that can be put on a method or class
          • behavior same as for @CompileStatic parameters above

      Attachments

        Activity

          People

            blackdrag Jochen Theodorou
            emge mgroovy
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: