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

org.jruby.compiler.ir.instructions.LABEL_Instr Maven / Gradle / Ivy

package org.jruby.compiler.ir.instructions;

import org.jruby.compiler.ir.Operation;
import org.jruby.compiler.ir.operands.Label;
import org.jruby.compiler.ir.representations.InlinerInfo;

public class LABEL_Instr extends NoOperandInstr
{
    public final Label _lbl;

    public LABEL_Instr(Label l) {
        super(Operation.LABEL);
        _lbl = l;
    }

    public String toString() { return _lbl + ":"; }

    public Instr cloneForInlining(InlinerInfo ii) {
        return new LABEL_Instr(ii.getRenamedLabel(_lbl));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy