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