org.jruby.ir.instructions.GetClassVariableInstr Maven / Gradle / Ivy
package org.jruby.ir.instructions;
import org.jruby.RubyModule;
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 GetClassVariableInstr extends GetInstr {
public GetClassVariableInstr(Variable dest, Operand scope, String varName) {
super(Operation.GET_CVAR, dest, scope, varName);
}
@Override
public Instr cloneForInlining(InlinerInfo ii) {
return new GetClassVariableInstr(ii.getRenamedVariable(getResult()),
getSource().cloneForInlining(ii), getRef());
}
@Override
public Object interpret(ThreadContext context, DynamicScope currDynScope, IRubyObject self, Object[] temp, Block block) {
return ((RubyModule) getSource().retrieve(context, self, currDynScope, temp)).getClassVar(getRef());
}
@Override
public void visit(IRVisitor visitor) {
visitor.GetClassVariableInstr(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy