This is an automated email from the ASF dual-hosted git repository.
paulk pushed a change to branch GROOVY_4_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git.
from eb2c9e3 GROOVY-8433: Category transform implies static methods
new e103144 GROOVY-10434: ClassNode isSealed() refactoring: mark methods
@Incubating, move sealed detection to an earlier phase and fix redirect issue
new 8efeaf2 GROOVY-6363: add test case
The 2 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/MetaClassImpl.java | 29 +--
src/main/java/groovy/transform/Sealed.java | 4 +-
.../java/org/codehaus/groovy/ast/ClassNode.java | 8 +-
.../org/codehaus/groovy/classgen/Verifier.java | 38 +--
.../SealedCompletionASTTransformation.java | 81 ++++++
src/test/groovy/lang/CategoryAnnotationTest.groovy | 273 +++++++++++----------
src/test/groovy/lang/MixinAnnotationTest.groovy | 24 +-
7 files changed, 284 insertions(+), 173 deletions(-)
create mode 100644
src/main/java/org/codehaus/groovy/transform/SealedCompletionASTTransformation.java