Ejemplo n.º 1
0
 public void Visit(IRSigned8Add instruction)
 {
 }
Ejemplo n.º 2
0
 private IIRUnit ParseSigned8Add(string[] tokens, ref int instructionPointer)
 {
     var value = (sbyte)ParseIntegerLiteral(tokens[1]);
     var result = new IRSigned8Add(instructionPointer, value);
     ++instructionPointer;
     return result;
 }