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

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

Introduction

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

Usage

From source file br.usp.each.saeg.badua.core.internal.instr.Probe.java

public abstract class Probe extends AbstractInsnNode {

    // -- constants

    public static final int BA_INT_PROBE = -1;

From source file kilim.analysis.NopInsn.java

class NopInsn extends AbstractInsnNode {
    public NopInsn() {
        super(NOP);
    }

    public int getType() {