org.jruby.ir.instructions.BranchInstr Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.Label;
public abstract class BranchInstr extends Instr implements JumpTargetInstr {
public BranchInstr(Operation op) {
super(op);
}
public abstract Label getJumpTarget();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy