Skip to content

Conversation

holgpar
Copy link
Contributor

@holgpar holgpar commented May 1, 2024

Unfortunately, J.MemberReference does not have a methodType when
the member reference is through an object.

When it is throught a class (to a static method) it works as expected...

What's changed?

What's your motivation?

Anything in particular you'd like reviewers to focus on?

Anyone you would like to review specifically?

Have you considered any alternatives or workarounds?

Any additional context

Checklist

  • I've added unit tests to cover both positive and negative cases
  • I've read and applied the recipe conventions and best practices
  • I've used the IntelliJ IDEA auto-formatter on affected files

@knutwannheden
Copy link
Contributor

knutwannheden commented May 1, 2024

That there isn't any method type in that case sounds like a bug in the Java parser to me.

@timtebeek timtebeek added the enhancement New feature or request label May 2, 2024
@timtebeek timtebeek changed the title try to rewrite method references LombokValueToRecord should rewrite method references too May 2, 2024
@timtebeek timtebeek added the bug Something isn't working label May 2, 2024
@timtebeek
Copy link
Member

Can we separate these cases into separate tests to get these changes partially through already? Then we can separately work on the type issues, with the failing test here marked as @ExpectedToFail.

@holgpar
Copy link
Contributor Author

holgpar commented May 2, 2024

hm... at the moment we cannot do a meaningful implementation that addresses method references.
So are you asking for a test case to reproduce the issue?

@timtebeek
Copy link
Member

Ah no I'd thought from your message above that it does work for ClassName::methodName, but not for someInstance::methodName, and as such that we can at the very least try to cover the first case already, and add a separate unit test for the second case annotated with @ExpectedToFail (or @Disabled). If I misunderstood then please ignore; we'll need that proper fix anyway as well.

@holgpar
Copy link
Contributor Author

holgpar commented May 2, 2024

I just mentioned the static case to give you guys a clue on what might be wrong... It does not help for this recipe. Sorry for causing confusion.

@timtebeek
Copy link
Member

Let's see if the tests pass and if so we can merge this addition to the recipe. 🙏🏻

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some suggestions could not be made:

  • src/test/java/org/openrewrite/java/migrate/lombok/LombokValueToRecordTest.java
    • lines 27-28

@timtebeek
Copy link
Member

This now fails with

LombokValueToRecordTest > methodReferences() FAILED
    org.opentest4j.AssertionFailedError: [Unexpected result in "example/A.java":
diff --git a/example/A.java b/example/A.java
index 044b9dd..f63ce43 100644
--- a/example/A.java
+++ b/example/A.java
@@ -4,13 +4,23 @@ 

 public record A(
   String test) {
+
+}
+
+class B {
+
+
+  public static String classMethod() {
+      return "foo";
+  }
+
 }

 class Using {

    Supplier<String> usingMethodReference() {
       A a = new A("foo");
-      return a::test;
+      return a::getTest;
   }

 }
\ No newline at end of file

Copy link
Contributor

This PR is stale because it has been open for 90 days with no activity. Remove stale label or comment or this will be closed in 7 days.

@github-actions github-actions bot added the Stale label Jul 14, 2025
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@timtebeek timtebeek removed the Stale label Jul 16, 2025
@timtebeek
Copy link
Member

Had a brief look to see if I could replicate any type information issues, but these tests (now?) pass:

    @MinimumJava17
    @Test
    void recordMethodReference() {
        rewriteRun(
          java(
            """
              import java.util.List;
              import java.util.stream.Stream;
              
              record Person(String name, int age) {}
              
              class Test {
                  void test() {
                      List<Person> people = List.of(
                          new Person("Alice", 30),
                          new Person("Bob", 25),
                          new Person("Charlie", 35)
                      );
                      
                      // Method reference to record accessor methods
                      List<String> names = people.stream()
                          .map(Person::name)
                          .toList();
                          
                      List<Integer> ages = people.stream()
                          .map(Person::age)
                          .toList();
                          
                      // Method reference with instance
                      Person person = new Person("David", 40);
                      java.util.function.Supplier<String> nameSupplier = person::name;
                      java.util.function.Supplier<Integer> ageSupplier = person::age;
                      
                      // Constructor reference
                      java.util.function.BiFunction<String, Integer, Person> personConstructor = Person::new;
                      Person newPerson = personConstructor.apply("Eve", 28);
                  }
              }
              """
          )
        );
    }

    @MinimumJava17
    @Test
    void lombokValueClass() {
        rewriteRun(
          java(
            """
              import java.util.List;
              import java.util.stream.Stream;
              
              @lombok.Value
              class Person {
                  String name;
                  int age;
              }
              
              class Test {
                  void test() {
                      List<Person> people = List.of(
                          new Person("Alice", 30),
                          new Person("Bob", 25),
                          new Person("Charlie", 35)
                      );
              
                      // Method reference to accessor methods
                      List<String> names = people.stream()
                          .map(Person::getName)
                          .toList();
              
                      List<Integer> ages = people.stream()
                          .map(Person::getAge)
                          .toList();
              
                      // Method reference with instance
                      Person person = new Person("David", 40);
                      java.util.function.Supplier<String> nameSupplier = person::getName;
                      java.util.function.Supplier<Integer> ageSupplier = person::getAge;
              
                      // Constructor reference
                      java.util.function.BiFunction<String, Integer, Person> personConstructor = Person::new;
                      Person newPerson = personConstructor.apply("Eve", 28);
                  }
              }
              """
          )
        );
    }

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some suggestions could not be made:

  • src/test/java/org/openrewrite/java/migrate/lombok/LombokValueToRecordTest.java
    • lines 27-28

@timtebeek timtebeek self-requested a review July 17, 2025 23:40
@timtebeek timtebeek moved this from In Progress to Ready to Review in OpenRewrite Jul 17, 2025
@timtebeek timtebeek marked this pull request as ready for review July 17, 2025 23:40
Copy link
Member

@timtebeek timtebeek left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot for the help here @holgpar ! Took a while to circle back, but glad to see this resolved.

@timtebeek timtebeek merged commit c853276 into openrewrite:main Jul 18, 2025
2 checks passed
@github-project-automation github-project-automation bot moved this from Ready to Review to Done in OpenRewrite Jul 18, 2025
mergify bot added a commit to robfrank/linklift that referenced this pull request Aug 15, 2025
…12.0 to 3.15.0 [skip ci]

Bumps [org.openrewrite.recipe:rewrite-migrate-java](https://github.com/openrewrite/rewrite-migrate-java) from 3.12.0 to 3.15.0.
Release notes

*Sourced from [org.openrewrite.recipe:rewrite-migrate-java's releases](https://github.com/openrewrite/rewrite-migrate-java/releases).*

> 3.15.0
> ------
>
> What's Changed
> --------------
>
> * Convert assigning Switch statements to Switch expressions by [`@​pdelagrave`](https://github.com/pdelagrave) in [openrewrite/rewrite-migrate-java#795](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/795)
> * Convert switch expressions to arrows where possible by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#801](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/801)
> * Convert switch cases with returns to returned switch expression by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#802](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/802)
> * `ReplaceStreamCollectWithToList` should look at return type by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#803](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/803)
> * New recipe to adopt Lombok setter method names by [`@​timo-a`](https://github.com/timo-a) in [openrewrite/rewrite-migrate-java#632](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/632)
> * refactor: Static imports for Collections and Collectors by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#804](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/804)
> * Preserve whitespace in `MigrateCollectionsUnmodifiableList` by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#806](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/806)
> * rename settings.local.json to settings.json by [`@​zieka`](https://github.com/zieka) in [openrewrite/rewrite-migrate-java#808](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/808)
> * The quick fix for the tests for Jaxws Dependencies by [`@​steve-aom-elliott`](https://github.com/steve-aom-elliott) in [openrewrite/rewrite-migrate-java#809](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/809)
> * Refactor RewriteTest to use defaults method by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#814](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/814)
> * Create `is` methods for boolean fields in `LombokValueToRecord` by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#813](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/813)
> * Joda-time: Make safe migration optional by [`@​amishra-u`](https://github.com/amishra-u) in [openrewrite/rewrite-migrate-java#811](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/811)
> * Improve "Add explicit Common Annotations dependencies" in "Migrate to Java 11" by [`@​jevanlingen`](https://github.com/jevanlingen) in [openrewrite/rewrite-migrate-java#816](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/816)
> * chore(ci): bump actions/checkout from 4 to 5 by [`@​dependabot`](https://github.com/dependabot)[bot] in [openrewrite/rewrite-migrate-java#817](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/817)
>
> **Full Changelog**: <openrewrite/rewrite-migrate-java@v3.14.0...v3.15.0>
>
> 3.14.1
> ------
>
> What's Changed
> --------------
>
> * OpenRewrite v8.59.1: <https://github.com/openrewrite/rewrite>
>
> **Full Changelog**: <https://github.com/openrewrite/rewrite-migrate-java>
>
> 3.14.0
> ------
>
> What's Changed
> --------------
>
> * `NullCheckAsSwitchCase` should only add `null` case if the switch is exhaustive by [`@​Jenson3210`](https://github.com/Jenson3210) in [openrewrite/rewrite-migrate-java#769](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/769)
> * Let all change-to-var recipes use a created var-Identifier instead of using a JavaTemplate by [`@​jevanlingen`](https://github.com/jevanlingen) in [openrewrite/rewrite-migrate-java#793](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/793)
> * Fix NPE in IteratorNext recipe when iterator() has no explicit receiver by [`@​jkschneider`](https://github.com/jkschneider) in [openrewrite/rewrite-migrate-java#796](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/796)
> * `LombokValueToRecord` should rewrite method references too by [`@​holgpar`](https://github.com/holgpar) in [openrewrite/rewrite-migrate-java#469](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/469)
> * Update test expectations to now finish idempotent `ChangeTagAttribute` in a single cycle by [`@​pdelagrave`](https://github.com/pdelagrave) in [openrewrite/rewrite-migrate-java#797](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/797)
> * refactor: Unwrap else block after return or throw statement by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#798](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/798)
>
> **Full Changelog**: <openrewrite/rewrite-migrate-java@v3.13.0...v3.14.0>
>
> 3.13.0
> ------
>
> What's Changed
> --------------
>
> * refactor: org.openrewrite.mavencentral by [`@​Laurens-W`](https://github.com/Laurens-W) in [openrewrite/rewrite-migrate-java#778](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/778)
> * Do not add explicit `Record` class import if using `var` keyword by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#781](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/781)
> * Correct groupId for `jakarta.annotation:jakarta.annotation-api` upgrade by [`@​steve-aom-elliott`](https://github.com/steve-aom-elliott) in [openrewrite/rewrite-migrate-java#784](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/784)
> * Keep `jakarta.annotation-api` dependency when moving to Jakarta with Spring Boot project and Jakarta annotations are used by [`@​jevanlingen`](https://github.com/jevanlingen) in [openrewrite/rewrite-migrate-java#782](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/782)
> * Add Bouncy Castle upgrade recipe for Java < 8 by [`@​pdelagrave`](https://github.com/pdelagrave) in [openrewrite/rewrite-migrate-java#790](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/790)
> * Fix `LombokValToFinalVar` in loops by [`@​MBoegers`](https://github.com/MBoegers) in [openrewrite/rewrite-migrate-java#768](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/768)
> * Replace JavaTemplate by a `var` identifier element for UseVarForGenericsConstructors recipe by [`@​jevanlingen`](https://github.com/jevanlingen) in [openrewrite/rewrite-migrate-java#789](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/789)
> * Add missing type table entries by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#792](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/792)
> * Migrate Lombok's `@__` syntax to `onX_` for Java 8+ by [`@​timtebeek`](https://github.com/timtebeek) in [openrewrite/rewrite-migrate-java#794](https://redirect.github.com/openrewrite/rewrite-migrate-java/pull/794)

... (truncated)


Commits

* [`f65c067`](openrewrite/rewrite-migrate-java@f65c067) Restore `UpdateJakartaAnnotations2` as a deprecated placeholder
* [`aa973e9`](openrewrite/rewrite-migrate-java@aa973e9) chore(ci): bump actions/checkout from 4 to 5 ([#817](https://redirect.github.com/openrewrite/rewrite-migrate-java/issues/817))
* [`a6a509e`](openrewrite/rewrite-migrate-java@a6a509e) Improve "Add explicit Common Annotations dependencies" in "Migrate to Java 11...
* [`cbe5ca5`](openrewrite/rewrite-migrate-java@cbe5ca5) [Auto] SDKMAN! Java candidates as of 2025-08-11T1018
* [`180b215`](openrewrite/rewrite-migrate-java@180b215) Revert "Joda-time: Make safe migration optional ([#811](https://redirect.github.com/openrewrite/rewrite-migrate-java/issues/811))"
* [`531270b`](openrewrite/rewrite-migrate-java@531270b) Joda-time: Make safe migration optional ([#811](https://redirect.github.com/openrewrite/rewrite-migrate-java/issues/811))
* [`9f029e3`](openrewrite/rewrite-migrate-java@9f029e3) Create `is` methods for boolean fields in `LombokValueToRecord` ([#813](https://redirect.github.com/openrewrite/rewrite-migrate-java/issues/813))
* [`bc6f9dc`](openrewrite/rewrite-migrate-java@bc6f9dc) Allow BouncyCastleTest to match in any order
* [`eef26e4`](openrewrite/rewrite-migrate-java@eef26e4) Refactor RewriteTest to use defaults method ([#814](https://redirect.github.com/openrewrite/rewrite-migrate-java/issues/814))
* [`d9674d1`](openrewrite/rewrite-migrate-java@d9674d1) Delegate from `RemoveIllegalSemicolons` to `RemoveExtraSemicolons`
* Additional commits viewable in [compare view](openrewrite/rewrite-migrate-java@v3.12.0...v3.15.0)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=org.openrewrite.recipe:rewrite-migrate-java&package-manager=maven&previous-version=3.12.0&new-version=3.15.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working enhancement New feature or request
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

LombokValueToRecord results in broken if method references are used
3 participants