Exemplo n.º 1
0
 public void EmitLessThan(Type type)
 {
     Emit(LessThanInstruction.Create(type));
 }
Exemplo n.º 2
0
 public void EmitLessThan(Type type, bool liftedResult)
 {
     Emit(liftedResult ?
          LessThanInstruction.CreateLifted(TypeUtils.GetNonNullableType(type)) :
          LessThanInstruction.Create(TypeUtils.GetNonNullableType(type)));
 }