List of usage examples for org.objectweb.asm.tree FrameNode accept
@Override
public void accept(final MethodVisitor methodVisitor)
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); } } }