1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
283this.Value = value;
32 references to Value
Microsoft.CodeAnalysis.CSharp (31)
Compilation\InitializerSemanticModel.cs (1)
168return new BoundPropertyEqualsValue(result.Syntax, property, result.Locals, result.Value);
FlowAnalysis\AbstractFlowPass.cs (3)
3675VisitRvalue(node.Value); 3681VisitRvalue(node.Value); 3687VisitRvalue(node.Value);
FlowAnalysis\DefiniteAssignment.cs (1)
1862VisitRvalue(boundValue.Value);
FlowAnalysis\NullableWalker.cs (2)
3032equalsValue.Value, 3040CheckDisallowedNullAssignment(resultType, parameterAnnotations, equalsValue.Value.Syntax);
Generated\BoundNodes.xml.Generated.cs (15)
310if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(field, this.Field) || locals != this.Locals || value != this.Value) 340if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(property, this.Property) || locals != this.Locals || value != this.Value) 370if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(parameter, this.Parameter) || locals != this.Locals || value != this.Value) 9927this.Visit(node.Value); 9932this.Visit(node.Value); 9937this.Visit(node.Value); 10961BoundExpression value = (BoundExpression)this.Visit(node.Value); 10968BoundExpression value = (BoundExpression)this.Visit(node.Value); 10975BoundExpression value = (BoundExpression)this.Visit(node.Value); 12551BoundExpression value = (BoundExpression)this.Visit(node.Value); 12559BoundExpression value = (BoundExpression)this.Visit(node.Value); 12567BoundExpression value = (BoundExpression)this.Visit(node.Value); 15280new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }), 15288new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }), 15296new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }),
Lowering\InitializerRewriter.cs (1)
104fieldInit.Value,
Operations\CSharpOperationFactory.cs (3)
1768IOperation value = Create(boundFieldEqualsValue.Value); 1777IOperation value = Create(boundPropertyEqualsValue.Value); 1786IOperation value = Create(boundParameterEqualsValue.Value);
Symbols\ConstantValueUtils.cs (1)
49var value = GetAndValidateConstantValue(boundValue.Value, symbol, symbol.Type, equalsValueNode.Value, diagnostics);
Symbols\Source\SourceComplexParameterSymbol.cs (3)
275VerifyParamDefaultValueMatchesAttributeIfAny(_lazyDefaultSyntaxValue, parameterEqualsValue.Value.Syntax, diagnostics); 284parameterEqualsValue.Value.Syntax.Location); 397BoundExpression convertedExpression = parameterEqualsValue.Value;
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
418if (!(initializer is BoundFieldEqualsValue { Value: { } value }))
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\FieldInitializerBindingTests.cs (1)
278var initValueSyntax = boundFieldInit.Value.Syntax;