What I understand is Soot performs program analysis on the ByteCode.
However, I have incomplete or slightly buggy-code like the following where the return type for the method is not correct:
class D {
public void m1() {
int total = 0;
for(int i = 0; i < 10; i++) {
total += i;
}
return total;
}
}
Will Soot be able to do program analysis on partially complete code or slightly buggy code?