1 write to IfTrue
System.Linq.Expressions (1)
System\Linq\Expressions\ConditionalExpression.cs (1)
19
IfTrue
= ifTrue;
21 references to IfTrue
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
ExpressionTrees\Sources\ExprLambdaUtils.vb (1)
195
Visit(node.
IfTrue
)
System.Linq.Expressions (19)
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (1)
21
EmitExpressionAsType(node.
IfTrue
, node.Type, flags);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
339
Result ifTrue = RewriteExpression(node.
IfTrue
, stack);
System\Linq\Expressions\ConditionalExpression.cs (11)
49
public override Type Type =>
IfTrue
.Type;
86
/// <param name="ifTrue">The <see cref="
IfTrue
"/> property of the result.</param>
91
if (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)
441
Visit(node.
IfTrue
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
82
public Expression IfTrue => _node.
IfTrue
;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
343
Visit(node.
IfTrue
);
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 (2)
1478
if (node.
IfTrue
== AstUtils.Empty)
1489
Compile(node.
IfTrue
, asVoid);
System.Linq.Queryable (1)
System\Linq\EnumerableRewriter.cs (1)
384
Expression ifTrue = Visit(c.
IfTrue
);