boomerang.arrays.IgnoreArrayStrategy Maven / Gradle / Ivy
/**
* ***************************************************************************** Copyright (c) 2020
* CodeShield GmbH, Paderborn, Germany. This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*
Contributors: Johannes Spaeth - initial API and implementation
* *****************************************************************************
*/
package boomerang.arrays;
import boomerang.scene.ControlFlowGraph.Edge;
import boomerang.scene.Pair;
import boomerang.scene.Val;
import java.util.Set;
import wpds.impl.Weight;
import wpds.interfaces.State;
public class IgnoreArrayStrategy implements ArrayHandlingStrategy {
@Override
public void handleForward(Edge storeStmt, Pair storedVal, Set out) {}
@Override
public void handleBackward(Edge curr, Pair arrayBase, Set out) {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy