Code Monkey home page Code Monkey logo

Comments (2)

nicoespeon avatar nicoespeon commented on July 16, 2024 1

That's a nice suggestion, thank you @canadaduane ๐Ÿ‘

from abracadabra.

nicoespeon avatar nicoespeon commented on July 16, 2024

Hey @canadaduane!

So, I give this deeper thoughts and while it seems interesting when you're in the spirit of wrapping statements inside an if, it causes problems that I want to keep out of this extension scope.

In short, that's not a "refactoring".

if (condition === 'true') 
let ok
ok = someFunc()
callAnotherFunc(ok)

and

if (condition === 'true') {
  let ok
  ok = someFunc()
  callAnotherFunc(ok)
}

are not the same thing. My goal for Abracadabra is to propose automated refactorings that you can use safely. If we fail to do so, I'd consider this a bug that should be fixed.

I can definitely see that if I select multiple lines, I explicitly want to wrap them inside the leading if statement. But when I do so, I'm effectively changing what the code does and would expect existing passing tests to fail (or failing tests to pass).

Therefore, Iย think that should be implemented in a different extension that would have a different goal. I created hocus-pocus for similar reasons, but it focuses on creating code that doesn't exist, based on the intention to create it. I feel what we're talking about is yet another kind of operation to make developer life more convenient. But I don't have one in mind at the moment.

Any way, thanks for suggesting. I think the idea is interesting for the developer. But I don't think it should be in Abracadabra.

from abracadabra.

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.