This is an automated email from the ASF dual-hosted git repository.

asf-gitbox-commits pushed a change to branch GROOVY-12162
in repository https://gitbox.apache.org/repos/asf/groovy.git


    omit 58dcf7a33f GROOVY-12162: Harden and extend bytecode peephole 
optimization
     add 7c8e476f33 GROOVY-12163: fix concurrent modification of 
ExpandoMetaClass mixinClasses
     add 535be21d26 GROOVY-12163: fix concurrent modification of 
ExpandoMetaClass mixinClasses (tweak test for improved robustness and less cost 
and fix a misleading comment)
     add 5ca3ac444e GROOVY-12156: chooseBestMethod returns candidates in 
identity-hash order, making static-compilation output path-dependent
     add 2ab10f94a2 GROOVY-12157: Covariant bridge methods are emitted in hash 
order, not the order they are found
     add 0a16e3e3b8 GROOVY-12158: @AutoImplement generates methods in hash 
order, not the order they are found
     add 310527e8cc GROOVY-12159: Synthetic class-literal fields and accessors 
are emitted in hash order, not the order the literals were encountered
     add 0558aef6cb GROOVY-12149: Nondeterministic reflection order flows into 
generated bytecode, breaking reproducible builds
     add 9b4176bc49 GROOVY-12160: @AnnotationCollector emits collected 
annotation members in hash order when the collector is precompiled
     add 3740ee7e4c GROOVY-12164: extend Closure.call fast path to typed 
one-arg overrides
     new bf2f825143 GROOVY-12162: Harden and extend bytecode peephole 
optimization

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (58dcf7a33f)
            \
             N -- N -- N   refs/heads/GROOVY-12162 (bf2f825143)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/main/java/groovy/lang/Closure.java             |  86 +++++++++-
 src/main/java/groovy/lang/ExpandoMetaClass.java    |   4 +-
 .../groovy/classgen/AsmClassGenerator.java         |   6 +-
 .../org/codehaus/groovy/classgen/Verifier.java     |  10 +-
 .../groovy/reflection/MixinInMetaClass.java        |   7 +-
 .../groovy/reflection/ReflectionUtils.java         |  66 ++++++++
 .../transform/AnnotationCollectorTransform.java    |   8 +-
 .../transform/AutoImplementASTTransformation.java  |   6 +-
 .../transform/stc/StaticTypeCheckingSupport.java   |   6 +-
 .../org/codehaus/groovy/vmplugin/v8/Java8.java     |  10 +-
 src/test/groovy/bugs/Groovy12164.groovy            | 186 +++++++++++++++++++++
 .../ExpandoMetaClassMixinConcurrencyTest.groovy    | 114 +++++++++++++
 .../classgen/CovariantBridgeMethodOrderTest.groovy |  69 ++++++++
 .../SyntheticClassLiteralFieldOrderTest.groovy     |  94 +++++++++++
 .../AnnotationCollectorMemberOrderTest.groovy      |  97 +++++++++++
 .../transform/AutoImplementMethodOrderTest.groovy  |  70 ++++++++
 .../stc/StaticTypeCheckingSupportTest.groovy       |  57 +++++++
 17 files changed, 873 insertions(+), 23 deletions(-)
 create mode 100644 src/test/groovy/bugs/Groovy12164.groovy
 create mode 100644 
src/test/groovy/groovy/lang/ExpandoMetaClassMixinConcurrencyTest.groovy
 create mode 100644 
src/test/groovy/org/codehaus/groovy/classgen/CovariantBridgeMethodOrderTest.groovy
 create mode 100644 
src/test/groovy/org/codehaus/groovy/classgen/SyntheticClassLiteralFieldOrderTest.groovy
 create mode 100644 
src/test/groovy/org/codehaus/groovy/transform/AnnotationCollectorMemberOrderTest.groovy
 create mode 100644 
src/test/groovy/org/codehaus/groovy/transform/AutoImplementMethodOrderTest.groovy
 create mode 100644 
src/test/groovy/org/codehaus/groovy/transform/stc/StaticTypeCheckingSupportTest.groovy

Reply via email to