Nowadays we used to know static analysis tools like findbugs, pmd, and many more. In findbugs they use linear bytecode scanning. Now for my final project, I develop tools almost like a findbugs but not as complex as them, but I'm using nonlinear, with that Now I can reduce false positives, like some method that actually called in else method, which is cannot be detected by findbugs.
I want to ask, is there any static analysis tools which use non linear in their code scanning?
I'm sorry for my bad english :))
