Example usage for org.objectweb.asm.tree InsnList subclass-usage

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

Introduction

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

Usage

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

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

    Frame<?> currentFrame;
    Frame<?> nextFrame;
    Frame<?>[] frames;

From source file org.jboss.byteman.agent.adapter.BMInsnList.java

/**
 */
public class BMInsnList extends InsnList {
    // the local variables list managed by the method node which owns this instruction list
    List localvariables;

From source file org.spongepowered.asm.mixin.injection.callback.ReadOnlyInsnList.java

/**
 * Read-only wrapper for InsnList, defensively passed to InjectionPoint instances so that custom InjectionPoint implementations cannot modify the insn
 * list whilst inspecting it.
 */
public class ReadOnlyInsnList extends InsnList {

From source file org.spongepowered.asm.mixin.injection.code.ReadOnlyInsnList.java

/**
 * Read-only wrapper for InsnList, defensively passed to InjectionPoint
 * instances so that custom InjectionPoint implementations cannot modify the
 * insn list whilst inspecting it.
 */
class ReadOnlyInsnList extends InsnList {