1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
281this.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)
3674VisitRvalue(node.Value); 3680VisitRvalue(node.Value); 3686VisitRvalue(node.Value);
FlowAnalysis\DefiniteAssignment.cs (1)
1911VisitRvalue(boundValue.Value);
FlowAnalysis\NullableWalker.cs (2)
3013equalsValue.Value, 3021CheckDisallowedNullAssignment(resultType, parameterAnnotations, equalsValue.Value.Syntax);
Generated\BoundNodes.xml.Generated.cs (15)
308if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(field, this.Field) || locals != this.Locals || value != this.Value) 338if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(property, this.Property) || locals != this.Locals || value != this.Value) 368if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(parameter, this.Parameter) || locals != this.Locals || value != this.Value) 9806this.Visit(node.Value); 9811this.Visit(node.Value); 9816this.Visit(node.Value); 10831BoundExpression value = (BoundExpression)this.Visit(node.Value); 10838BoundExpression value = (BoundExpression)this.Visit(node.Value); 10845BoundExpression value = (BoundExpression)this.Visit(node.Value); 12409BoundExpression value = (BoundExpression)this.Visit(node.Value); 12417BoundExpression value = (BoundExpression)this.Visit(node.Value); 12425BoundExpression value = (BoundExpression)this.Visit(node.Value); 15129new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }), 15137new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }), 15145new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.Value, null) }),
Lowering\InitializerRewriter.cs (1)
104fieldInit.Value,
Operations\CSharpOperationFactory.cs (3)
1727IOperation value = Create(boundFieldEqualsValue.Value); 1736IOperation value = Create(boundPropertyEqualsValue.Value); 1745IOperation value = Create(boundParameterEqualsValue.Value);
Symbols\ConstantValueUtils.cs (1)
49var value = GetAndValidateConstantValue(boundValue.Value, symbol, symbol.Type, equalsValueNode.Value, diagnostics);
Symbols\Source\SourceComplexParameterSymbol.cs (3)
269VerifyParamDefaultValueMatchesAttributeIfAny(_lazyDefaultSyntaxValue, parameterEqualsValue.Value.Syntax, diagnostics); 278parameterEqualsValue.Value.Syntax.Location); 391BoundExpression 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;