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

crypto.extractparameter.CallSiteWithParamIndex Maven / Gradle / Ivy

package crypto.extractparameter;

import boomerang.scene.Statement;

public record CallSiteWithParamIndex(Statement statement, int index, String varName) {

    @Override
    public String toString() {
        return varName + " at " + statement + " and " + index;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy