1 write to Value
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
287
this.
Value
= value;
33 references to Value
Microsoft.CodeAnalysis.CSharp (32)
Binder\RefSafetyAnalysis.cs (1)
252
var value = fieldEqualsValue.
Value
;
Compilation\InitializerSemanticModel.cs (1)
168
return new BoundPropertyEqualsValue(result.Syntax, property, result.Locals, result.
Value
);
FlowAnalysis\AbstractFlowPass.cs (3)
3446
VisitRvalue(node.
Value
);
3452
VisitRvalue(node.
Value
);
3458
VisitRvalue(node.
Value
);
FlowAnalysis\DefiniteAssignment.cs (1)
1772
VisitRvalue(boundValue.
Value
);
FlowAnalysis\NullableWalker.cs (2)
2772
equalsValue.
Value
,
2780
CheckDisallowedNullAssignment(resultType, parameterAnnotations, equalsValue.
Value
.Syntax.Location);
Generated\BoundNodes.xml.Generated.cs (15)
314
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(field, this.Field) || locals != this.Locals || value != this.
Value
)
344
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(property, this.Property) || locals != this.Locals || value != this.
Value
)
374
if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(parameter, this.Parameter) || locals != this.Locals || value != this.
Value
)
9428
this.Visit(node.
Value
);
9433
this.Visit(node.
Value
);
9438
this.Visit(node.
Value
);
10422
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
10427
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
10432
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
11798
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
11806
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
11814
BoundExpression value = (BoundExpression)this.Visit(node.
Value
);
14431
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
14439
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
14447
new TreeDumperNode("value", null, new TreeDumperNode[] { Visit(node.
Value
, null) }),
Lowering\InitializerRewriter.cs (1)
104
fieldInit.
Value
,
Operations\CSharpOperationFactory.cs (3)
1649
IOperation value = Create(boundFieldEqualsValue.
Value
);
1658
IOperation value = Create(boundPropertyEqualsValue.
Value
);
1667
IOperation value = Create(boundParameterEqualsValue.
Value
);
Symbols\ConstantValueUtils.cs (1)
50
var value = GetAndValidateConstantValue(boundValue.
Value
, symbol, symbol.Type, initValueNodeLocation, diagnostics);
Symbols\Source\SourceComplexParameterSymbol.cs (3)
261
VerifyParamDefaultValueMatchesAttributeIfAny(_lazyDefaultSyntaxValue, parameterEqualsValue.
Value
.Syntax, diagnostics);
270
parameterEqualsValue.
Value
.Syntax.Location);
383
BoundExpression convertedExpression = parameterEqualsValue.
Value
;
Symbols\Synthesized\SynthesizedStaticConstructor.cs (1)
416
if (!(initializer is BoundFieldEqualsValue {
Value
: { } value }))
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\FieldInitializerBindingTests.cs (1)
278
var initValueSyntax = boundFieldInit.
Value
.Syntax;