package org.jruby.ir.persistence;
import org.jruby.ir.operands.OperandType;
interface IRPersistenceValues {
public static final int VERSION = 1;
public final static int TWO_MEGS = 1024 * 1024 * 2;
public final static int PRIMITIVE_BASE = OperandType.values().length;
public final static byte STRING = (byte) (PRIMITIVE_BASE + 1);
public final static byte TRUE = (byte) 't';
public final static byte FALSE = (byte) 'f';
public final static byte ARRAY = (byte) (PRIMITIVE_BASE + 5);
public final static byte NULL = (byte) (PRIMITIVE_BASE + 6);
public final static byte INSTR = (byte) (PRIMITIVE_BASE + 7);
public final static byte LONG = (byte) (PRIMITIVE_BASE + 8);
public final static byte FLOAT = (byte) (PRIMITIVE_BASE + 9);
public final static byte DOUBLE = (byte) (PRIMITIVE_BASE + 10);
public final static byte FULL = (byte) 255;
public final static int PROLOGUE_LENGTH = 3 * 4;
public final static int NULL_STRING = -1;
}