com.ui4j.bytebuddy.instrumentation.method.bytecode.stack.Throw Maven / Gradle / Ivy
The newest version!
package com.ui4j.bytebuddy.instrumentation.method.bytecode.stack;
import com.ui4j.bytebuddy.instrumentation.Instrumentation;
import com.ui4j.bytebuddy.jar.asm.MethodVisitor;
import com.ui4j.bytebuddy.jar.asm.Opcodes;
/**
* Throws a {@link java.lang.Throwable} which must lie on top of the stack when this stack manipulation is called.
*/
public enum Throw implements StackManipulation {
/**
* The singleton instance.
*/
INSTANCE;
@Override
public boolean isValid() {
return true;
}
@Override
public Size apply(MethodVisitor methodVisitor, Instrumentation.Context instrumentationContext) {
methodVisitor.visitInsn(Opcodes.ATHROW);
return StackSize.SINGLE.toDecreasingSize();
}
}