sootup.analysis.intraprocedural.ForwardFlowAnalysis Maven / Gradle / Ivy
package sootup.analysis.intraprocedural;
import sootup.core.graph.BasicBlock;
import sootup.core.graph.StmtGraph;
public abstract class ForwardFlowAnalysis extends FlowAnalysis {
/** Construct the analysis from StmtGraph. */
public > ForwardFlowAnalysis(StmtGraph graph) {
super(graph);
}
@Override
protected boolean isForward() {
return true;
}
@Override
protected void execute() {
int i = execute(stmtToBeforeFlow, stmtToAfterFlow);
}
}