vote up 2 vote down star
2

Are there any tools that can find any private functions without any references? (Redundant functions)

Reason being, that a function may have been created and called from a couple of areas, but as the project expands and grows, these two calls may have been removed and swapped with a better alternative. But the method may still remain. I was wondering if there were any handy tools that would look through the code, spotting private functions and checking if they have any references, if not, inform the user of the situation.

It wouldn't be too tricky to create one myself, but I was wondering if there were any accessible apps that could do this with the files containing the code?

My code is in c#, but I can imagine that this question covers a variety of coding languages.

Thanks

flag

1  
Duplicate of stackoverflow.com/questions/614096/… – Nathan Koop Aug 25 at 13:22

4 Answers

vote up 2 vote down check

If your code has Unit Tests (it does, right? ;-) then running NCover will allow you to identify methods that aren't being called from anywhere. If you haven't got any unit tests then it's a good excuse to use for starting to build them.

In the general case, I'd suspect that code coverage tools are a good fit in most languages.

link|flag
Would agree with you on this, but I also have recently started on a project with 0 tests, but also wish to remove such 'dead code'. Doing so would reduce the amount of code I have to start writing tests for! – Martin Pritchard Aug 25 at 12:59
@Martin - No tests; ouchies! If you start writing unit tests for public methods that'll probably make the private methods that aren't called a small enough set that you can use Visual Studio's Search to check for them being called. That said, I know exactly where you're coming from with this one! :) – Rob Aug 25 at 13:03
I have no Unit tests in my project either, could be because it's SharePoint though :-D. – Colin Aug 25 at 13:19
2  
Downside is that if the private method/function is a result of some earlier cycle of behavior-/test-driven development, there may be a test covering the now unused private method through another method which isn't private or is a corner case for example a null check which in the software's current incarnation will never be executed. Just looking at code coverage won't help you there. – Esko Aug 25 at 13:27
@Esko - good point! =) – Rob Aug 25 at 13:51
vote up 3 vote down

ReSharper does the job.

link|flag
Would be helpful if you tell people how – Martin Pritchard Aug 26 at 8:33
ReSharper marks any private function that is not called: * Yellow mark at the right side of the VS code window. * Method name greyed. * Red light bulb if cursor is on function name. ALT + RETURN offers "Remove unused method". That's it – The Chairman Aug 26 at 11:12
vote up 0 vote down

Eclipse does it automatically for Java, not sure if you can have same thing for C#.

link|flag
vote up 0 vote down

Another question might even be "Does the c# compiler remove private methods that aren't actually used?".

My guess would be no, but you never know!

EDIT:

Actually, I think it might be hard to tell where a method is used. It might be private, but it can still be used as Event Handlers. Not impossible to check, but I'm sure that aspect would make it a little more difficult.

link|flag
2  
It'd be a "bad thing"(tm) for the compiler to remove methods that aren't used, private or otherwise, as they can still be accessed and called via Reflection. In fact, I believe that the VS Unit Test framework generates code that does exactly that to allow you to unit test private/internal methods. – Rob Aug 25 at 13:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.