org.jruby.ir.instructions.BlockGivenInstr Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.ir.IRVisitor;
import org.jruby.ir.Operation;
import org.jruby.ir.operands.Operand;
import org.jruby.ir.operands.Variable;
import org.jruby.ir.transformations.inlining.InlinerInfo;
import org.jruby.runtime.Block;
import org.jruby.runtime.DynamicScope;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;
public class BlockGivenInstr extends Instr implements ResultInstr {
private Variable result;
public BlockGivenInstr(Variable result) {
super(Operation.BLOCK_GIVEN);
assert result != null: "BlockGivenInstr result is null";
this.result = result;
}
public Operand[] getOperands() {
return EMPTY_OPERANDS;
}
public Variable getResult() {
return result;
}
public void updateResult(Variable v) {
this.result = v;
}
@Override
public Instr cloneForInlining(InlinerInfo ii) {
return new BlockGivenInstr(ii.getRenamedVariable(result));
}
@Override
public Object interpret(ThreadContext context, DynamicScope currDynScope, IRubyObject self, Object[] temp, Block block) {
return context.runtime.newBoolean(block.isGiven());
}
@Override
public void visit(IRVisitor visitor) {
visitor.BlockGivenInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy