1 write to Test
System.Linq.Expressions (1)
System\Linq\Expressions\ConditionalExpression.cs (1)
18
Test
= test;
22 references to Test
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
ExpressionTrees\Sources\ExprLambdaUtils.vb (1)
193
Visit(node.
Test
)
System.Linq.Expressions (20)
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (2)
18
Debug.Assert(node.
Test
.Type == typeof(bool));
20
EmitExpressionAndBranch(false, node.
Test
, labFalse);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
336
Result test = RewriteExpression(node.
Test
, stack);
System\Linq\Expressions\ConditionalExpression.cs (10)
85
/// <param name="test">The <see cref="
Test
"/> property of the result.</param>
91
if (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)
426
if (IsSimpleExpression(node.
Test
))
429
Visit(node.
Test
);
436
Visit(node.
Test
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
84
public Expression Test => _node.
Test
;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
341
Visit(node.
Test
);
System\Linq\Expressions\ExpressionVisitor.cs (1)
232
return node.Update(Visit(node.
Test
), Visit(node.IfTrue), Visit(node.IfFalse));
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
1476
Compile(node.
Test
);
System.Linq.Queryable (1)
System\Linq\EnumerableRewriter.cs (1)
383
Expression test = Visit(c.
Test
);