org.jruby.ir.instructions.ExceptionRegionStartMarkerInstr Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.Label;
import org.jruby.ir.operands.Operand;
public class ExceptionRegionStartMarkerInstr extends Instr {
final public Label begin;
final public Label end;
final public Label firstRescueBlockLabel;
final public Label ensureBlockLabel;
public ExceptionRegionStartMarkerInstr(Label begin, Label end,
Label ensureBlockLabel, Label firstRescueBlockLabel) {
super(Operation.EXC_REGION_START);
this.begin = begin;
this.end = end;
this.firstRescueBlockLabel = firstRescueBlockLabel;
this.ensureBlockLabel = ensureBlockLabel;
}
@Override
public String toString() {
StringBuilder buf = new StringBuilder(super.toString());
buf.append("(").append(begin).append(", ").append(end).append(", rescue[").append(firstRescueBlockLabel).append("]");
if (ensureBlockLabel != null) buf.append(", ensure[").append(ensureBlockLabel).append("]");
buf.append(")");
return buf.toString();
}
public Operand[] getOperands() {
return EMPTY_OPERANDS;
}
@Override
public void visit(IRVisitor visitor) {
visitor.ExceptionRegionStartMarkerInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy