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

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

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

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

// SSS FIXME: Not used anywhere right now!
public abstract class GuardInstr extends NoOperandInstr
{
    public GuardInstr(Operation op) { super(op); }

    public Instr cloneForInlining(InlinerInfo ii) { return this; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy