All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jruby.ir.instructions.MultiBranchInstr Maven / Gradle / Ivy

package org.jruby.ir.instructions;

import org.jruby.ir.Operation;
import org.jruby.ir.operands.Label;

public abstract class MultiBranchInstr extends Instr {
    public MultiBranchInstr(Operation op) {
        super(op);
    }

    public abstract Label[] getJumpTargets();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy