7 types derived from NullableMethodCallInstruction
System.Linq.Expressions (7)
System\Linq\Expressions\Interpreter\TypeOperations.cs (7)
123private sealed class HasValue : NullableMethodCallInstruction 133private sealed class GetValue : NullableMethodCallInstruction 147private sealed class GetValueOrDefault : NullableMethodCallInstruction 172private sealed class GetValueOrDefault1 : NullableMethodCallInstruction 185private sealed class EqualsClass : NullableMethodCallInstruction 209private sealed class ToStringClass : NullableMethodCallInstruction 219private sealed class GetHashCodeClass : NullableMethodCallInstruction
5 references to NullableMethodCallInstruction
System.Linq.Expressions (5)
System\Linq\Expressions\Interpreter\InstructionList.cs (1)
907Emit(NullableMethodCallInstruction.Create(method.Name, parameters.Length, method));
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
1080_instructions.Emit(NullableMethodCallInstruction.CreateGetValue()); 1135_instructions.Emit(NullableMethodCallInstruction.CreateGetValue()); 1170_instructions.Emit(NullableMethodCallInstruction.CreateGetValue());
System\Linq\Expressions\Interpreter\TypeOperations.cs (1)
115private static NullableMethodCallInstruction? s_hasValue, s_value, s_equals, s_getHashCode, s_getValueOrDefault1, s_toString;