1 write to IfTrue
System.Linq.Expressions (1)
System\Linq\Expressions\ConditionalExpression.cs (1)
19IfTrue = ifTrue;
20 references to IfTrue
System.Linq.Expressions (19)
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (1)
21EmitExpressionAsType(node.IfTrue, node.Type, flags);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
339Result ifTrue = RewriteExpression(node.IfTrue, stack);
System\Linq\Expressions\ConditionalExpression.cs (11)
49public override Type Type => IfTrue.Type; 86/// <param name="ifTrue">The <see cref="IfTrue"/> property of the result.</param> 91if (test == Test && ifTrue == IfTrue && ifFalse == IfFalse) 129/// <param name="ifTrue">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.IfTrue"/> property equal to.</param> 132/// <see cref="ExpressionType.Conditional"/> and the <see cref="ConditionalExpression.Test"/>, <see cref="ConditionalExpression.IfTrue"/>, 156/// <param name="ifTrue">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.IfTrue"/> property equal to.</param> 160/// <see cref="ExpressionType.Conditional"/> and the <see cref="ConditionalExpression.Test"/>, <see cref="ConditionalExpression.IfTrue"/>, 193/// <param name="ifTrue">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.IfTrue"/> property equal to.</param> 195/// <see cref="ExpressionType.Conditional"/> and the <see cref="ConditionalExpression.Test"/>, <see cref="ConditionalExpression.IfTrue"/>, 207/// <param name="ifTrue">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.IfTrue"/> property equal to.</param> 210/// <see cref="ExpressionType.Conditional"/> and the <see cref="ConditionalExpression.Test"/>, <see cref="ConditionalExpression.IfTrue"/>,
System\Linq\Expressions\DebugViewWriter.cs (1)
441Visit(node.IfTrue);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
82public Expression IfTrue => _node.IfTrue;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
343Visit(node.IfTrue);
System\Linq\Expressions\ExpressionVisitor.cs (1)
232return node.Update(Visit(node.Test), Visit(node.IfTrue), Visit(node.IfFalse));
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1478if (node.IfTrue == AstUtils.Empty) 1489Compile(node.IfTrue, asVoid);
System.Linq.Queryable (1)
System\Linq\EnumerableRewriter.cs (1)
384Expression ifTrue = Visit(c.IfTrue);