Can soot perform program analysis for incomplete code

72 views Asked by At

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?

0

There are 0 answers