1 type derived from MethodBinaryExpression
System.Core (1)
Microsoft\Scripting\Ast\BinaryExpression.cs (1)
516
internal sealed class OpAssignMethodConversionBinaryExpression :
MethodBinaryExpression
{
11 instantiations of MethodBinaryExpression
System.Core (11)
Microsoft\Scripting\Ast\BinaryExpression.cs (11)
350
return new
MethodBinaryExpression
(nodeType, left, right, type, method);
595
return new
MethodBinaryExpression
(binaryType, left, right, method.ReturnType, method);
604
return new
MethodBinaryExpression
(binaryType, left, right, TypeUtils.GetNullableType(method.ReturnType), method);
606
return new
MethodBinaryExpression
(binaryType, left, right, typeof(bool), method);
623
return new
MethodBinaryExpression
(binaryType, left, right, method.ReturnType, method);
632
return new
MethodBinaryExpression
(binaryType, left, right, TypeUtils.GetNullableType(method.ReturnType), method);
634
return new
MethodBinaryExpression
(binaryType, left, right, typeof(bool), method);
1246
return new
MethodBinaryExpression
(ExpressionType.AndAlso, left, right, returnType, method);
1252
return new
MethodBinaryExpression
(ExpressionType.AndAlso, left, right, returnType, method);
1292
return new
MethodBinaryExpression
(ExpressionType.OrElse, left, right, returnType, method);
1298
return new
MethodBinaryExpression
(ExpressionType.OrElse, left, right, returnType, method);