Inheritance: Microsoft.Scripting.Interpreter.Instruction
Exemplo n.º 1
0
 public void EmitEqual(Type type, bool liftedResult)
 {
     Emit(liftedResult ?
          EqualInstruction.CreateLifted(TypeUtils.GetNonNullableType(type)) :
          EqualInstruction.Create(TypeUtils.GetNonNullableType(type)));
 }
Exemplo n.º 2
0
 public void EmitEqual(Type type)
 {
     Emit(EqualInstruction.Create(type));
 }