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

soot.robovm.RoboVmNopStmt Maven / Gradle / Ivy

There is a newer version: 2.5.0-9
Show newest version
package soot.robovm;

import soot.ValueBox;
import soot.jimple.internal.JNopStmt;

import java.util.Collections;
import java.util.List;

/**
 * @author Demyan Kimitsa
 * Special class that keep local variable references as used.
 * It is needed for case when there is local variable attached to simple goto statement
 */
public class RoboVmNopStmt extends JNopStmt {
    private final List useBoxes;
    public RoboVmNopStmt(List useBoxes) {
        this.useBoxes = useBoxes;
    }

    @Override
    public List getUseBoxes() {
        return Collections.unmodifiableList(useBoxes);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy