soot.jimple.infoflow.problems.rules.DummyArrayContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot-infoflow Show documentation
Show all versions of soot-infoflow Show documentation
Soot extending data flow tracking components for Java
The newest version!
package soot.jimple.infoflow.problems.rules;
import soot.jimple.ArrayRef;
import soot.jimple.Stmt;
import soot.jimple.infoflow.data.ContainerContext;
public class DummyArrayContext implements IArrayContextProvider {
public ContainerContext[] getContextForArrayRef(ArrayRef arrayRef, Stmt stmt) {
return null;
}
}