Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parenthesised ConstructorCallExpression and ConstantExpressions failing to parse with Groovy 2 #5236

Open
BrendanHart opened this issue Mar 31, 2025 · 2 comments · May be fixed by #5253
Open
Labels
bug Something isn't working parser-groovy

Comments

@BrendanHart
Copy link
Contributor

BrendanHart commented Mar 31, 2025

What version of OpenRewrite are you using?

I am using

  • OpenRewrite v8.49.0
  • Gradle plugin v7.3.0
  • rewrite-groovy v8.49.0
  • Gradle 6.9.1

How are you running OpenRewrite?

Originally I found this bug whilst using the Gradle plugin with Gradle 6, but have since reproduced with a test.

What is the smallest, simplest way to reproduce the problem?

Added the below to GroovyParserTest in the Groovy 2 test suite:

    @Test
    void shouldBeAbleToParseParenthesisedConstructorCallExpressions() {
        rewriteRun(
            groovy(
                """
                (new BigDecimal(10))
                """
            )
        );
    }

    @Test
    void shouldBeAbleToParseParenthesisedConstantExpressions() {
        rewriteRun(
                groovy(
                        """
                        (100)
                        """
                )
        );
    }

What did you expect to see?

The tests pass.

What did you see instead?

The tests fail.

What is the full stack trace of any errors you encountered?

expected: "(new BigDecimal(10))"
 but was: "new(10w BigDecimal(10))"
expected: "(100)"
 but was: "1000)"

Are you interested in contributing a fix to OpenRewrite?

Yes

@BrendanHart BrendanHart added the bug Something isn't working label Mar 31, 2025
@timtebeek
Copy link
Contributor

Great to now finally have that Groovy 2 test suite; should help unambiguously finding and fixing such issues, thanks!

@timtebeek timtebeek moved this to Backlog in OpenRewrite Mar 31, 2025
@BrendanHart BrendanHart changed the title Assigning parenthesised expressions fails with Groovy 2 Parenthesised ConstructorCallExpression and ConstantExpressions failing to parse with Groovy 2 Mar 31, 2025
@BrendanHart
Copy link
Contributor Author

Updated as it seems to be more general than just assignment, and also covering other expression types.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working parser-groovy
Projects
Status: Backlog
2 participants