1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
286this.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)
3724VisitRvalue(node.Value); 3730VisitRvalue(node.Value); 3736VisitRvalue(node.Value);
FlowAnalysis\DefiniteAssignment.cs (1)
1863VisitRvalue(boundValue.Value);
FlowAnalysis\NullableWalker.cs (2)
3033equalsValue.Value, 3041CheckDisallowedNullAssignment(resultType, parameterAnnotations, equalsValue.Value.Syntax);
Generated\BoundNodes.xml.Generated.cs (15)
313if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(field, this.Field) || locals != this.Locals || value != this.Value) 343if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(property, this.Property) || locals != this.Locals || value != this.Value) 373if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(parameter, this.Parameter) || locals != this.Locals || value != this.Value) 10063this.Visit(node.Value); 10068this.Visit(node.Value); 10073this.Visit(node.Value); 11114BoundExpression value = (BoundExpression)this.Visit(node.Value); 11121BoundExpression value = (BoundExpression)this.Visit(node.Value); 11128BoundExpression value = (BoundExpression)this.Visit(node.Value); 12725BoundExpression value = (BoundExpression)this.Visit(node.Value); 12733BoundExpression value = (BoundExpression)this.Visit(node.Value); 12741BoundExpression value = (BoundExpression)this.Visit(node.Value); 15482new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }), 15490new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }), 15498new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }),
Lowering\InitializerRewriter.cs (1)
104fieldInit.Value,
Operations\CSharpOperationFactory.cs (3)
1793IOperation value = Create(boundFieldEqualsValue.Value); 1802IOperation value = Create(boundPropertyEqualsValue.Value); 1811IOperation 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;