1 write to DefaultValue
System.Linq.Expressions (1)
System\Linq\Expressions\LabelExpression.cs (1)
20DefaultValue = defaultValue;
13 references to DefaultValue
System.Linq.Expressions (13)
System\Linq\Expressions\Compiler\LambdaCompiler.ControlFlow.cs (3)
77if (node.DefaultValue != null) 81EmitExpressionAsVoid(node.DefaultValue, flags); 86EmitExpression(node.DefaultValue, flags);
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
815Result expression = RewriteExpression(node.DefaultValue, stack);
System\Linq\Expressions\DebugViewWriter.cs (1)
995Visit(node.DefaultValue);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
211public Expression? DefaultValue => _node.DefaultValue;
System\Linq\Expressions\ExpressionVisitor.cs (1)
334return node.Update(VisitLabelTarget(node.Target), Visit(node.DefaultValue));
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
1749if (node.DefaultValue != null) 1753CompileAsVoid(node.DefaultValue); 1757Compile(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> 64if (target == Target && defaultValue == DefaultValue)