Hi there,
is there a way in Soot to make the default initialization explicit?
Say, we have a class:
public class A {
public Object obj1;
}
Soot already creates a default constructor
public A() { }
is it possible to further tell soot to add a
this.obj1 = null;
Many thanks,
Martin