Questions tagged [refactoring]
The refactoring tag has no summary.
22 questions
2 votes
0 answers
18 views
C refactoring tools for producing clean "specialized" code
I have C source code that is generalized either by preprocessing directives or compile-time optimizations, for example the ones shown below. Is there any command-line tool that can help to take code ...
2 votes
1 answer
114 views
Free JS/TS tool for code analysis and refactoring suggestions
Are there any free tools that would analyse the javascript/typescript code base and provide suggestions on code refactoring? Such as extracting functionally similar areas of code into separate ...
1 vote
0 answers
67 views
Side Effects Detector for PHP
As a backend developer working on a legacy code, I want to know the side effects of a piece of code. For example, I want to select a method of a class and be informed of what possible interactions it ...
1 vote
0 answers
42 views
Tool for merging Java classes and interfaces
I'm a Java software developer and often inherit existing projects. These projects follow the convention that each class has an interface even if there is only one implementation. I would like to ...
1 vote
0 answers
55 views
Refactor - separate java sources and resources
I have a large project containing both sources and resources under the same directories. Something like: src |_ com |_ package |_ JavaClass.java |_ a_resource.extension I would like to ...
3 votes
1 answer
143 views
Tool to keep branched and refactored C++ code in sync?
I'm searching for a Windows GUI/command line tool or Visual Studio plug-in where I can automate the extraction of C++ code blocks, add some refactoring/renaming steps and insert it into some other C++ ...
1 vote
0 answers
59 views
Software to change c++ naming conventions / Advanced batch renaming
I am looking for a free software that I could use to do batch renaming of class members in c++. It doesn't have to be perfect, just handle most simple cases. It is enough if it can identify class ...
6 votes
2 answers
370 views
Ruby automatic mass refactoring tools
What are the best Ruby automatic mass refactoring tools out there? For instance, I want to be able to replace double quoted strings that don't have any special content (#{}, \n, ') with single quoted ...