1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
286
this.
Value
= value;
31 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)
3676
VisitRvalue(node.
Value
);
3682
VisitRvalue(node.
Value
);
3688
VisitRvalue(node.
Value
);
FlowAnalysis\DefiniteAssignment.cs (1)
1863
VisitRvalue(boundValue.
Value
);
FlowAnalysis\NullableWalker.cs (2)
3069
equalsValue.
Value
,
3077
CheckDisallowedNullAssignment(resultType, parameterAnnotations, equalsValue.
Value
.Syntax);
Generated\BoundNodes.xml.Generated.cs (15)
313
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(field, this.Field) || locals != this.Locals || value != this.
Value
)
343
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(property, this.Property) || locals != this.Locals || value != this.
Value
)
373
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(parameter, this.Parameter) || locals != this.Locals || value != this.
Value
)
10061
this.Visit(node.
Value
);
10066
this.Visit(node.
Value
);
10071
this.Visit(node.
Value
);
11112
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
11119
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
11126
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12723
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12731
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
12739
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
15480
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
15488
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
15496
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
Lowering\InitializerRewriter.cs (1)
104
fieldInit.
Value
,
Operations\CSharpOperationFactory.cs (3)
1793
IOperation value = Create(boundFieldEqualsValue.
Value
);
1802
IOperation value = Create(boundPropertyEqualsValue.
Value
);
1811
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)
420
if (!(initializer is BoundFieldEqualsValue {
Value
: { } value }))