1 write to Test
System.Linq.Expressions (1)
System\Linq\Expressions\ConditionalExpression.cs (1)
18Test = test;
21 references to Test
System.Linq.Expressions (20)
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (2)
18Debug.Assert(node.Test.Type == typeof(bool)); 20EmitExpressionAndBranch(false, node.Test, labFalse);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
336Result test = RewriteExpression(node.Test, stack);
System\Linq\Expressions\ConditionalExpression.cs (10)
85/// <param name="test">The <see cref="Test"/> property of the result.</param> 91if (test == Test && ifTrue == IfTrue && ifFalse == IfFalse) 128/// <param name="test">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.Test"/> property equal to.</param> 132/// <see cref="ExpressionType.Conditional"/> and the <see cref="ConditionalExpression.Test"/>, <see cref="ConditionalExpression.IfTrue"/>, 155/// <param name="test">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.Test"/> property equal to.</param> 160/// <see cref="ExpressionType.Conditional"/> and the <see cref="ConditionalExpression.Test"/>, <see cref="ConditionalExpression.IfTrue"/>, 192/// <param name="test">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.Test"/> property equal to.</param> 195/// <see cref="ExpressionType.Conditional"/> and the <see cref="ConditionalExpression.Test"/>, <see cref="ConditionalExpression.IfTrue"/>, 206/// <param name="test">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.Test"/> property equal to.</param> 210/// <see cref="ExpressionType.Conditional"/> and the <see cref="ConditionalExpression.Test"/>, <see cref="ConditionalExpression.IfTrue"/>,
System\Linq\Expressions\DebugViewWriter.cs (3)
426if (IsSimpleExpression(node.Test)) 429Visit(node.Test); 436Visit(node.Test);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
84public Expression Test => _node.Test;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
341Visit(node.Test);
System\Linq\Expressions\ExpressionVisitor.cs (1)
232return node.Update(Visit(node.Test), Visit(node.IfTrue), Visit(node.IfFalse));
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
1476Compile(node.Test);
System.Linq.Queryable (1)
System\Linq\EnumerableRewriter.cs (1)
383Expression test = Visit(c.Test);