views:

40

answers:

1

Hi everyone, i would like to create a source code analyser for Java Project (like FindBugs and other static analysis programs) that would be able to detect certain method calls.

I would prefer to do it using Python, but any advice would be great !

I'm going to start by studying the FindBugs source code, but if anyone could explain to me the underlying concepts and if it's easily do-able, i would be really grateful.

Thank you for your time.

Olivier.

+1  A: 

Read the book : Language implementation Patterns. It is a very accessible book out there and you can gauge the effort that will be required to achieve what you want to achieve

pyfunc