public void EmitAdd(Type type, bool @checked)
 {
     if (@checked)
     {
         Emit(AddOvfInstruction.Create(type));
     }
     else
     {
         Emit(AddInstruction.Create(type));
     }
 }
Esempio n. 2
0
 public void EmitAdd(Type type, bool @checked)
 {
     if (!@checked)
     {
         this.Emit(AddInstruction.Create(type));
         return;
     }
     else
     {
         this.Emit(AddOvfInstruction.Create(type));
         return;
     }
 }