Example usage for org.objectweb.asm.tree InvokeDynamicInsnNode getOpcode

List of usage examples for org.objectweb.asm.tree InvokeDynamicInsnNode getOpcode

Introduction

In this page you can find the example usage for org.objectweb.asm.tree InvokeDynamicInsnNode getOpcode.

Prototype

public int getOpcode() 

Source Link

Document

Returns the opcode of this instruction.

Usage

From source file:edu.mit.streamjit.util.bytecode.MethodResolver.java

License:Open Source License

private void interpret(InvokeDynamicInsnNode insn, FrameState frame, BBInfo block) {
    switch (insn.getOpcode()) {
    default:/*from ww w.  ja v a2 s  .c  o  m*/
        throw new UnsupportedOperationException("" + insn.getOpcode());
    }
}