public void EmitGreaterThan(Type type) { Emit(GreaterThanInstruction.Create(type)); }
public void EmitGreaterThan(Type type, bool liftedResult) { Emit(liftedResult ? GreaterThanInstruction.CreateLifted(TypeUtils.GetNonNullableType(type)) : GreaterThanInstruction.Create(TypeUtils.GetNonNullableType(type))); }