Inheritance: Microsoft.Scripting.Interpreter.Instruction
Example #1
0
 public void EmitNotEqual(Type type)
 {
     Emit(NotEqualInstruction.Create(type));
 }
Example #2
0
 public void EmitNotEqual(Type type, bool liftedResult)
 {
     Emit(liftedResult ?
          NotEqualInstruction.CreateLifted(TypeUtils.GetNonNullableType(type)) :
          NotEqualInstruction.Create(TypeUtils.GetNonNullableType(type)));
 }