This is an automated email from the ASF dual-hosted git repository.
emilles pushed a change to branch GROOVY-10683
in repository https://gitbox.apache.org/repos/asf/groovy.git
omit e7ec9a88ea GROOVY-10683: support `for (item in list index i)` looping
add 067073673e GROOVY-11592: Bump asm to 9.8
add 7332f6dab5 re-enable JDK25 build now that asm is bumped to 9.8
add c149663055 GROOVY-11592: Bump asm to 9.8 (fix typo)
add e31d666463 GROOVY-11592: Bump asm to 9.8 (fix typo)
add 6bab5282a4 GROOVY-11594: Bump junit5 to 5.12.1
add a5f42143b4 Update verification metadata
add ad573a28c5 Create error message for variable scoping lazily
add 1fc8d99837 Avoid finding same variable declaration repeatedly
add 6ce967f801 Trivial refactoring: replace `StringBuilder` with `String`
new 8261b961f6 `for` loop parser refactor
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 (e7ec9a88ea)
\
N -- N -- N refs/heads/GROOVY-10683 (8261b961f6)
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:
.github/workflows/groovy-build-test.yml | 62 +++----
gradle/verification-metadata.xml | 5 +
src/antlr/GroovyLexer.g4 | 1 -
src/antlr/GroovyParser.g4 | 10 +-
.../apache/groovy/parser/antlr4/AstBuilder.java | 34 +---
.../groovy/classgen/VariableScopeVisitor.java | 191 +++++++++++++--------
.../groovy/control/CompilerConfiguration.java | 5 +-
src/spec/test/SemanticsTest.groovy | 10 +-
.../groovy/control/CompilerConfigurationTest.java | 4 +-
versions.properties | 6 +-
10 files changed, 172 insertions(+), 156 deletions(-)