Example #1
0
 public static FrozenString decode(IRReaderDecoder d) {
   return new FrozenString(d.decodeByteList(), d.decodeInt());
 }
Example #2
0
 public static BlockGivenInstr decode(IRReaderDecoder d) {
   return new BlockGivenInstr(d.decodeVariable(), d.decodeOperand());
 }
Example #3
0
 public static IRException decode(IRReaderDecoder d) {
   return getExceptionFromOrdinal(d.decodeByte());
 }
Example #4
0
 public static BNEInstr decode(IRReaderDecoder d) {
   return new BNEInstr(d.decodeLabel(), d.decodeOperand(), d.decodeOperand());
 }
 public static ArrayDerefInstr decode(IRReaderDecoder d) {
   return create(d.decodeVariable(), d.decodeOperand(), (FrozenString) d.decodeOperand());
 }
 public static PutClassVariableInstr decode(IRReaderDecoder d) {
   return new PutClassVariableInstr(d.decodeOperand(), d.decodeString(), d.decodeOperand());
 }
Example #7
0
 public static NonlocalReturnInstr decode(IRReaderDecoder d) {
   return new NonlocalReturnInstr(d.decodeOperand(), d.decodeString());
 }