Example usage for org.objectweb.asm.tree FrameNode accept

List of usage examples for org.objectweb.asm.tree FrameNode accept

Introduction

In this page you can find the example usage for org.objectweb.asm.tree FrameNode accept.

Prototype

@Override
    public void accept(final MethodVisitor methodVisitor) 

Source Link

Usage

From source file:org.jacoco.core.internal.instr.ProbeVariableInserter.java

License:Open Source License

/**
 * Inserts the frame again that was inserted after the given label.
 * //from   w  ww  .jav  a  2  s. com
 * @param label
 *            label of the frame to insert
 */
protected void insertProbeFrame(final Label label) {
    if (probeFrames != null) {
        final FrameNode frame = probeFrames.get(label);
        if (frame != null) {
            frame.accept(mv);
        }
    }
}