1 write to Value
System.Linq.Expressions (1)
System\Linq\Expressions\GotoExpression.cs (1)
41Value = value;
20 references to Value
System.Linq.Expressions (18)
System\Linq\Expressions\Compiler\LambdaCompiler.ControlFlow.cs (3)
109if (node.Value != null) 113EmitExpressionAsVoid(node.Value, flags); 118EmitExpression(node.Value, flags);
System\Linq\Expressions\Compiler\LambdaCompiler.Statements.cs (3)
47if (g != null && (g.Value == null || !Significant(g.Value)) && ReferenceLabel(g.Target).CanReturn) 464if (jump != null && jump.Value == null)
System\Linq\Expressions\Compiler\StackSpiller.cs (1)
859Result value = RewriteExpressionFreeTemps(node.Value, Stack.Empty);
System\Linq\Expressions\DebugViewWriter.cs (1)
1007Visit(node.Value);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
159public Expression? Value => _node.Value;
System\Linq\Expressions\ExpressionStringBuilder.cs (2)
698if (node.Value != null) 701Visit(node.Value);
System\Linq\Expressions\ExpressionVisitor.cs (1)
293return node.Update(VisitLabelTarget(node.Target), Visit(node.Value));
System\Linq\Expressions\GotoExpression.cs (2)
88/// <param name="value">The <see cref="Value"/> property of the result.</param> 92if (target == Target && value == Value)
System\Linq\Expressions\Interpreter\LightCompiler.cs (4)
1769if (node.Value != null) 1771Compile(node.Value); 1776node.Value != null && node.Value.Type != typeof(void),
System.Linq.Queryable (2)
System\Linq\EnumerableRewriter.cs (2)
409Type type = node.Value!.Type; 413Expression value = Visit(node.Value);