Example usage for org.objectweb.asm.tree.analysis BasicInterpreter subclass-usage

List of usage examples for org.objectweb.asm.tree.analysis BasicInterpreter subclass-usage

Introduction

In this page you can find the example usage for org.objectweb.asm.tree.analysis BasicInterpreter subclass-usage.

Usage

From source file com.github.fge.grappa.transform.RuleMethodInterpreter.java

public final class RuleMethodInterpreter extends BasicInterpreter {
    private final RuleMethod method;
    private final List<Edge> additionalEdges = new ArrayList<>();

    public RuleMethodInterpreter(RuleMethod method) {
        this.method = method;

From source file com.lodgon.parboiled.transform.RuleMethodInterpreter.java

class RuleMethodInterpreter extends BasicInterpreter {

    private final RuleMethod method;
    private final List<Edge> additionalEdges = new ArrayList<Edge>();

    public RuleMethodInterpreter(RuleMethod method) {

From source file org.apache.drill.exec.compile.bytecode.ReplacingInterpreter.java

public class ReplacingInterpreter extends BasicInterpreter {
    static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(ReplacingInterpreter.class);

    private int index = 0;

    @Override

From source file org.apache.flink.api.java.sca.NestedMethodAnalyzer.java

/**
 * Extends ASM's BasicInterpreter. Instead of ASM's BasicValues, it introduces
 * TaggedValues which extend BasicValue and allows for appending interesting
 * information to values. The NestedMethodAnalyzer follows interesting values
 * and analyzes nested methods (control/method flow) if necessary.
 */

From source file org.evosuite.instrumentation.BooleanArrayInterpreter.java

/**
 * <p>BooleanArrayInterpreter class.</p>
 *
 * @author Gordon Fraser
 */
public class BooleanArrayInterpreter extends BasicInterpreter {

From source file org.evosuite.instrumentation.BooleanValueInterpreter.java

/**
 * An interpreter that determines which values are real Booleans
 *
 * @author Gordon Fraser
 */
public class BooleanValueInterpreter extends BasicInterpreter {

From source file org.evosuite.instrumentation.ContainerBooleanInterpreter.java

/**
 * <p>ContainerBooleanInterpreter class.</p>
 *
 * @author fraser
 */
public class ContainerBooleanInterpreter extends BasicInterpreter {

From source file org.evosuite.instrumentation.StringBooleanInterpreter.java

/**
 * <p>StringBooleanInterpreter class.</p>
 *
 * @author Gordon Fraser
 */
public class StringBooleanInterpreter extends BasicInterpreter {

From source file org.evosuite.instrumentation.testability.ContainerBooleanInterpreter.java

/**
 * <p>ContainerBooleanInterpreter class.</p>
 *
 * @author fraser
 */
public class ContainerBooleanInterpreter extends BasicInterpreter {

From source file org.evosuite.instrumentation.testability.StringBooleanInterpreter.java

/**
 * <p>StringBooleanInterpreter class.</p>
 *
 * @author Gordon Fraser
 */
public class StringBooleanInterpreter extends BasicInterpreter {