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

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

There is a newer version: 9.4.9.0
Show newest version
package org.jruby.ir.instructions;

import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.Operand;

public class ExceptionRegionEndMarkerInstr extends Instr {
    public ExceptionRegionEndMarkerInstr() {
        super(Operation.EXC_REGION_END);
    }

    public Operand[] getOperands() {
        return EMPTY_OPERANDS;
    }

    @Override
    public void visit(IRVisitor visitor) {
        visitor.ExceptionRegionEndMarkerInstr(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy