JVM Languages
jstatic.txt
Associated article: Java & Static Analysis
Tags: JVM Languages
Published source code accompanying the article by Amit Chaturvedi in which he explains how you can make the review process more manageable and predictable by using static analysis.
Java & Static Analysis
by Amit Chaturvedi
Example 1:
switch (expr) {
case c1:
statements // do these if expr == c1
break;
case c2:
statements // do these if expr == c2
break;
case c2:
}
Example 2:
class TestResourceLeak
{
public CoreResponse process(Entit entity) throws ResourceException {
...


