10 references to GetNullableType
System.Core (10)
Microsoft\Scripting\Ast\BinaryExpression.cs (2)
604
return new MethodBinaryExpression(binaryType, left, right, TypeUtils.
GetNullableType
(method.ReturnType), method);
632
return new MethodBinaryExpression(binaryType, left, right, TypeUtils.
GetNullableType
(method.ReturnType), method);
Microsoft\Scripting\Ast\UnaryExpression.cs (2)
387
return new UnaryExpression(unaryType, operand, TypeUtils.
GetNullableType
(method.ReturnType), method);
407
return new UnaryExpression(unaryType, operand, TypeUtils.
GetNullableType
(method.ReturnType), method);
Microsoft\Scripting\Compiler\LambdaCompiler.Binary.cs (2)
107
resultType = TypeUtils.
GetNullableType
(mc.Type);
122
resultType = TypeUtils.
GetNullableType
(mc.Type);
Microsoft\Scripting\Compiler\LambdaCompiler.Expressions.cs (2)
983
if (TypeUtils.AreEquivalent(resultType, TypeUtils.
GetNullableType
(mc.Type))) {
1010
if (TypeUtils.AreEquivalent(resultType, TypeUtils.
GetNullableType
(mc.Type))) {
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (1)
221
result = TypeUtils.
GetNullableType
(result);
Microsoft\Scripting\Compiler\LambdaCompiler.Unary.cs (1)
340
Type resultType = TypeUtils.
GetNullableType
(mc.Type);