All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.jimple.infoflow.aliasing.AbstractInteractiveAliasStrategy Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package soot.jimple.infoflow.aliasing;

import java.util.Set;

import soot.SootMethod;
import soot.Value;
import soot.jimple.Stmt;
import soot.jimple.infoflow.InfoflowManager;
import soot.jimple.infoflow.data.Abstraction;

public abstract class AbstractInteractiveAliasStrategy extends AbstractAliasStrategy {

	public AbstractInteractiveAliasStrategy(InfoflowManager manager) {
		super(manager);
	}

	@Override
	public void computeAliasTaints
			(final Abstraction d1, final Stmt src,
			final Value targetValue, Set taintSet,
			SootMethod method, Abstraction newAbs) {
		// nothing to do here
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy