views:

28

answers:

1

Does anyone know of an updated list of refactoring support for different IDEs?

How many of Fowler's refactorings have tool support in popular IDEs? And does any IDE use code smells to any greater extent?

I guess one would have to use addons for some IDEs, so even if I did find an updated list of refactoring support for say Eclipse, that would probably not be representative.

A: 

I don't think there is one document on refactoring for all IDEs (like this one, two years old and quite short)

It is better to refer to each IDE to compile oneself such a list:

As for code smells, they are more generally detected by an external static analysis tool like findbugs

alt text

VonC