Giter VIP home page Giter VIP logo

Comments (4)

Philzen avatar Philzen commented on July 17, 2024 2

@Stephan202 ah thanks for the clarification, i was not aware of that (yet) :)

Moving my issue report to openrewrite/rewrite-templating#90 then, assuming this issue never happened with the implementation in this repository (?)

from error-prone.

Stephan202 avatar Stephan202 commented on July 17, 2024 1

Hey @Philzen! It looks like you're using OpenRewrite's Refaster-to-recipe feature. OpenRewrite's implementation supports a subset of Refaster annotations, completely independently from the official Refaster implementation provided by Error Prone. I think you meant to file this issue against the openrewrite/rewrite-templating project.

(CC @timtebeek :).)

from error-prone.

Philzen avatar Philzen commented on July 17, 2024 1

@Stephan202 thanks a lot for the confirmation!

from error-prone.

Stephan202 avatar Stephan202 commented on July 17, 2024

assuming this issue never happened with the implementation in this repository (?)

I locally tested that to be sure (we have a project with a test framework for Refaster rules), and I can confirm that with stock Error Prone this rule behaves correctly.

With it, this code:

void testMigrateAssertEqualsFloatArrayDelta() {
  float[] actual = {0F};
  float[] expected = {1F};
  float delta = 0;
  Assert.assertEquals(actual, expected, delta);
}

Is rewritten to:

void testMigrateAssertEqualsFloatArrayDelta() {
  float[] actual = {0F};
  float[] expected = {1F};
  float delta = 0;
  Assertions.assertAll(
      () -> {
        Assertions.assertEquals(
            expected.length, actual.length, "Arrays don\'t have the same size.");
        for (int i = 0; i < actual.length; i++) {
          Assertions.assertEquals(expected[i], actual[i], delta);
        }   
      }); 
}

(I see that Error Prone also unnecessarily escapes the single quote. In PicnicSupermarket/error-prone-support#1138 I worked around a similar issue. I just noticed that Error Prone also has a utility method for this, but apparently the Refaster code path doesn't use it. @cushon WDYT of upstreaming a more efficient implementation? Happy to open a PR.)

from error-prone.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.