14 references to Value
System.Core (14)
Microsoft\Scripting\Ast\DebugViewWriter.cs (1)
982Visit(node.Value);
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
172public Expression Value { get { return _node.Value; } }
Microsoft\Scripting\Ast\ExpressionStringBuilder.cs (2)
719if (node.Value != null) { 721Visit(node.Value);
Microsoft\Scripting\Ast\ExpressionVisitor.cs (1)
321return node.Update(VisitLabelTarget(node.Target), Visit(node.Value));
Microsoft\Scripting\Ast\GotoExpression.cs (2)
121/// <param name="value">The <see cref="Value" /> property of the result.</param> 124if (target == Target && value == Value) {
Microsoft\Scripting\Compiler\LambdaCompiler.ControlFlow.cs (3)
113if (node.Value != null) { 115EmitExpressionAsVoid(node.Value, flags); 118EmitExpression(node.Value, flags);
Microsoft\Scripting\Compiler\LambdaCompiler.Statements.cs (3)
62if (g != null && (g.Value == null || !Significant(g.Value)) && ReferenceLabel(g.Target).CanReturn) { 411if (jump != null && jump.Value == null) {
Microsoft\Scripting\Compiler\StackSpiller.cs (1)
762Result value = RewriteExpressionFreeTemps(node.Value, Stack.Empty);