21 references to IfFalse
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (1)
ExpressionTrees\Sources\ExprLambdaUtils.vb (1)
197
Visit(node.
IfFalse
)
System.Linq.Expressions (19)
System\Linq\Expressions\Compiler\LambdaCompiler.Logical.cs (2)
23
if (NotEmpty(node.
IfFalse
))
37
EmitExpressionAsType(node.
IfFalse
, node.Type, flags);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
340
Result ifFalse = RewriteExpression(node.
IfFalse
, stack);
System\Linq\Expressions\ConditionalExpression.cs (9)
87
/// <param name="ifFalse">The <see cref="
IfFalse
"/> property of the result.</param>
91
if (test == Test && ifTrue == IfTrue && ifFalse ==
IfFalse
)
130
/// <param name="ifFalse">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.
IfFalse
"/> property equal to.</param>
133
/// and <see cref="ConditionalExpression.
IfFalse
"/> properties set to the specified values.</returns>
157
/// <param name="ifFalse">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.
IfFalse
"/> property equal to.</param>
161
/// and <see cref="ConditionalExpression.
IfFalse
"/> properties set to the specified values.</returns>
196
/// properties set to the specified values. The <see cref="ConditionalExpression.
IfFalse
"/> property is set to default expression and
208
/// <param name="ifFalse">An <see cref="Expression"/> to set the <see cref="ConditionalExpression.
IfFalse
"/> property equal to.</param>
211
/// and <see cref="ConditionalExpression.
IfFalse
"/> properties set to the specified values. The type of the resulting <see cref="ConditionalExpression"/>
System\Linq\Expressions\DebugViewWriter.cs (1)
445
Visit(node.
IfFalse
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
81
public Expression IfFalse => _node.
IfFalse
;
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
345
Visit(node.
IfFalse
);
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 (3)
1482
Compile(node.
IfFalse
, asVoid);
1491
if (node.
IfFalse
!= AstUtils.Empty)
1496
Compile(node.
IfFalse
, asVoid);
System.Linq.Queryable (1)
System\Linq\EnumerableRewriter.cs (1)
385
Expression ifFalse = Visit(c.
IfFalse
);