import org.jruby.interpreter.InterpreterContext;
import org.jruby.runtime.builtin.IRubyObject;
public class GetGlobalVariableInstr extends GetInstr {
public GetGlobalVariableInstr(Variable dest, String gvarName) {
super(Operation.GET_GLOBAL_VAR, dest, new GlobalVariable(gvarName), null);
}