6 references to GetBooleanOperator
System.Linq.Expressions (6)
System\Linq\Expressions\BinaryExpression.cs (3)
400
MethodInfo? opTrueFalse = TypeUtils.
GetBooleanOperator
(Method!.DeclaringType!, opName);
832
MethodInfo? opTrue = TypeUtils.
GetBooleanOperator
(declaringType, "op_True");
833
MethodInfo? opFalse = TypeUtils.
GetBooleanOperator
(declaringType, "op_False");
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (2)
283
MethodInfo? opFalse = TypeUtils.
GetBooleanOperator
(b.Method.DeclaringType!, "op_False");
389
MethodInfo? opTrue = TypeUtils.
GetBooleanOperator
(b.Method.DeclaringType!, "op_True");
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
1359
MethodInfo? opTrue = TypeUtils.
GetBooleanOperator
(expr.Method!.DeclaringType!, andAlso ? "op_False" : "op_True");