public void EmitSub(Type type, bool @checked) { if (@checked) { Emit(SubOvfInstruction.Create(type)); } else { Emit(SubInstruction.Create(type)); } }
public void EmitSub(Type type, bool @checked) { if (!@checked) { this.Emit(SubInstruction.Create(type)); return; } else { this.Emit(SubOvfInstruction.Create(type)); return; } }