1 write to DefaultValue
System.Linq.Expressions (1)
System\Linq\Expressions\LabelExpression.cs (1)
20
DefaultValue
= defaultValue;
13 references to DefaultValue
System.Linq.Expressions (13)
System\Linq\Expressions\Compiler\LambdaCompiler.ControlFlow.cs (3)
77
if (node.
DefaultValue
!= null)
81
EmitExpressionAsVoid(node.
DefaultValue
, flags);
86
EmitExpression(node.
DefaultValue
, flags);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
815
Result expression = RewriteExpression(node.
DefaultValue
, stack);
System\Linq\Expressions\DebugViewWriter.cs (1)
995
Visit(node.
DefaultValue
);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
211
public Expression? DefaultValue => _node.
DefaultValue
;
System\Linq\Expressions\ExpressionVisitor.cs (1)
334
return node.Update(VisitLabelTarget(node.Target), Visit(node.
DefaultValue
));
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
1749
if (node.
DefaultValue
!= null)
1753
CompileAsVoid(node.
DefaultValue
);
1757
Compile(node.
DefaultValue
);
System\Linq\Expressions\LabelExpression.cs (3)
11
/// <see cref="GotoExpression"/>. Otherwise, it gets the value in <see cref="
DefaultValue
"/>. If the
60
/// <param name="defaultValue">The <see cref="
DefaultValue
"/> property of the result.</param>
64
if (target == Target && defaultValue ==
DefaultValue
)